OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_WEBUI_MOJO_WEB_UI_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_MOJO_WEB_UI_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_MOJO_WEB_UI_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_MOJO_WEB_UI_CONTROLLER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "chrome/browser/ui/webui/mojo_web_ui_handler.h" | 13 #include "chrome/browser/ui/webui/mojo_web_ui_handler.h" |
14 #include "content/public/browser/render_frame_host.h" | 14 #include "content/public/browser/render_frame_host.h" |
15 #include "content/public/browser/render_view_host.h" | 15 #include "content/public/browser/render_view_host.h" |
16 #include "content/public/browser/web_ui_controller.h" | 16 #include "content/public/browser/web_ui_controller.h" |
17 #include "content/public/common/service_registry.h" | |
18 #include "mojo/public/cpp/system/core.h" | 17 #include "mojo/public/cpp/system/core.h" |
19 #include "services/shell/public/cpp/interface_registry.h" | 18 #include "services/shell/public/cpp/interface_registry.h" |
20 | 19 |
21 class MojoWebUIHandler; | 20 class MojoWebUIHandler; |
22 | 21 |
23 class MojoWebUIControllerBase : public content::WebUIController { | 22 class MojoWebUIControllerBase : public content::WebUIController { |
24 public: | 23 public: |
25 explicit MojoWebUIControllerBase(content::WebUI* contents); | 24 explicit MojoWebUIControllerBase(content::WebUI* contents); |
26 ~MojoWebUIControllerBase() override; | 25 ~MojoWebUIControllerBase() override; |
27 | 26 |
(...skipping 30 matching lines...) Expand all Loading... |
58 // Invoked to create the specific bindings implementation. | 57 // Invoked to create the specific bindings implementation. |
59 virtual void BindUIHandler(mojo::InterfaceRequest<Interface> request) = 0; | 58 virtual void BindUIHandler(mojo::InterfaceRequest<Interface> request) = 0; |
60 | 59 |
61 private: | 60 private: |
62 base::WeakPtrFactory<MojoWebUIController> weak_factory_; | 61 base::WeakPtrFactory<MojoWebUIController> weak_factory_; |
63 | 62 |
64 DISALLOW_COPY_AND_ASSIGN(MojoWebUIController); | 63 DISALLOW_COPY_AND_ASSIGN(MojoWebUIController); |
65 }; | 64 }; |
66 | 65 |
67 #endif // CHROME_BROWSER_UI_WEBUI_MOJO_WEB_UI_CONTROLLER_H_ | 66 #endif // CHROME_BROWSER_UI_WEBUI_MOJO_WEB_UI_CONTROLLER_H_ |
OLD | NEW |