devtools_ui.h 734 B

123456789101112131415161718192021222324252627
  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 ATOM_BROWSER_UI_DEVTOOLS_UI_H_
  5. #define ATOM_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 atom {
  10. class BrowserContext;
  11. class DevToolsUI : public content::WebUIController {
  12. public:
  13. explicit DevToolsUI(content::BrowserContext* browser_context,
  14. content::WebUI* web_ui);
  15. private:
  16. DISALLOW_COPY_AND_ASSIGN(DevToolsUI);
  17. };
  18. } // namespace atom
  19. #endif // ATOM_BROWSER_UI_DEVTOOLS_UI_H_