2013-05-14 06:45:34 +00:00
|
|
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
|
|
|
|
#ifndef BRIGHTRAY_BROWSER_DEVTOOLS_UI_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_DEVTOOLS_UI_H_
|
|
|
|
|
|
|
|
#include "base/compiler_specific.h"
|
2015-08-27 19:54:05 +00:00
|
|
|
#include "content/public/browser/browser_context.h"
|
2013-05-14 06:45:34 +00:00
|
|
|
#include "content/public/browser/web_ui_controller.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class BrowserContext;
|
|
|
|
|
|
|
|
class DevToolsUI : public content::WebUIController {
|
|
|
|
public:
|
2015-08-27 19:54:05 +00:00
|
|
|
explicit DevToolsUI(content::BrowserContext* browser_context,
|
|
|
|
content::WebUI* web_ui);
|
2013-05-14 06:45:34 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DevToolsUI);
|
|
|
|
};
|
|
|
|
|
2013-11-17 23:20:17 +00:00
|
|
|
} // namespace brightray
|
2013-05-14 06:45:34 +00:00
|
|
|
|
2017-05-18 22:05:25 +00:00
|
|
|
#endif // BRIGHTRAY_BROWSER_DEVTOOLS_UI_H_
|