| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 SERVICES_NAVIGATION_VIEW_IMPL_H_ | 5 #ifndef SERVICES_NAVIGATION_VIEW_IMPL_H_ |
| 6 #define SERVICES_NAVIGATION_VIEW_IMPL_H_ | 6 #define SERVICES_NAVIGATION_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 const content::NotificationSource& source, | 78 const content::NotificationSource& source, |
| 79 const content::NotificationDetails& details) override; | 79 const content::NotificationDetails& details) override; |
| 80 | 80 |
| 81 // aura::WindowTreeClientDelegate: | 81 // aura::WindowTreeClientDelegate: |
| 82 void OnEmbed( | 82 void OnEmbed( |
| 83 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; | 83 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; |
| 84 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; | 84 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; |
| 85 void OnLostConnection(aura::WindowTreeClient* client) override; | 85 void OnLostConnection(aura::WindowTreeClient* client) override; |
| 86 void OnPointerEventObserved(const ui::PointerEvent& event, | 86 void OnPointerEventObserved(const ui::PointerEvent& event, |
| 87 aura::Window* target) override; | 87 aura::Window* target) override; |
| 88 aura::client::CaptureClient* GetCaptureClient() override; | |
| 89 aura::PropertyConverter* GetPropertyConverter() override; | 88 aura::PropertyConverter* GetPropertyConverter() override; |
| 90 | 89 |
| 91 // views::WidgetDelegate: | 90 // views::WidgetDelegate: |
| 92 views::View* GetContentsView() override; | 91 views::View* GetContentsView() override; |
| 93 views::Widget* GetWidget() override; | 92 views::Widget* GetWidget() override; |
| 94 const views::Widget* GetWidget() const override; | 93 const views::Widget* GetWidget() const override; |
| 95 | 94 |
| 96 std::unique_ptr<service_manager::Connector> connector_; | 95 std::unique_ptr<service_manager::Connector> connector_; |
| 97 mojom::ViewClientPtr client_; | 96 mojom::ViewClientPtr client_; |
| 98 std::unique_ptr<service_manager::ServiceContextRef> ref_; | 97 std::unique_ptr<service_manager::ServiceContextRef> ref_; |
| 99 | 98 |
| 100 std::unique_ptr<aura::WindowTreeClient> window_tree_client_; | 99 std::unique_ptr<aura::WindowTreeClient> window_tree_client_; |
| 101 | 100 |
| 102 views::WebView* web_view_; | 101 views::WebView* web_view_; |
| 103 | 102 |
| 104 std::unique_ptr<content::WebContents> web_contents_; | 103 std::unique_ptr<content::WebContents> web_contents_; |
| 105 | 104 |
| 106 content::NotificationRegistrar registrar_; | 105 content::NotificationRegistrar registrar_; |
| 107 | 106 |
| 108 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host_; | 107 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host_; |
| 109 std::unique_ptr<views::Widget> widget_; | 108 std::unique_ptr<views::Widget> widget_; |
| 110 | 109 |
| 111 DISALLOW_COPY_AND_ASSIGN(ViewImpl); | 110 DISALLOW_COPY_AND_ASSIGN(ViewImpl); |
| 112 }; | 111 }; |
| 113 | 112 |
| 114 } // navigation | 113 } // navigation |
| 115 | 114 |
| 116 #endif // SERVICES_NAVIGATION_VIEW_IMPL_H_ | 115 #endif // SERVICES_NAVIGATION_VIEW_IMPL_H_ |
| OLD | NEW |