devtools_ui.h 722 B

12345678910111213141516171819202122232425
  1. // Copyright (c) 2011 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE-CHROMIUM file.
  4. #ifndef SHELL_BROWSER_UI_DEVTOOLS_UI_H_
  5. #define SHELL_BROWSER_UI_DEVTOOLS_UI_H_
  6. #include "base/compiler_specific.h"
  7. #include "content/public/browser/browser_context.h"
  8. #include "content/public/browser/web_ui_controller.h"
  9. namespace electron {
  10. class DevToolsUI : public content::WebUIController {
  11. public:
  12. explicit DevToolsUI(content::BrowserContext* browser_context,
  13. content::WebUI* web_ui);
  14. private:
  15. DISALLOW_COPY_AND_ASSIGN(DevToolsUI);
  16. };
  17. } // namespace electron
  18. #endif // SHELL_BROWSER_UI_DEVTOOLS_UI_H_