| 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 UI_VIEWS_MUS_MUS_CLIENT_H_ | 5 #ifndef UI_VIEWS_MUS_MUS_CLIENT_H_ |
| 6 #define UI_VIEWS_MUS_MUS_CLIENT_H_ | 6 #define UI_VIEWS_MUS_MUS_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 friend class AuraInit; | 122 friend class AuraInit; |
| 123 friend class test::MusClientTestApi; | 123 friend class test::MusClientTestApi; |
| 124 | 124 |
| 125 // aura::WindowTreeClientDelegate: | 125 // aura::WindowTreeClientDelegate: |
| 126 void OnEmbed( | 126 void OnEmbed( |
| 127 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; | 127 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; |
| 128 void OnLostConnection(aura::WindowTreeClient* client) override; | 128 void OnLostConnection(aura::WindowTreeClient* client) override; |
| 129 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; | 129 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; |
| 130 void OnPointerEventObserved(const ui::PointerEvent& event, | 130 void OnPointerEventObserved(const ui::PointerEvent& event, |
| 131 aura::Window* target) override; | 131 aura::Window* target) override; |
| 132 aura::client::CaptureClient* GetCaptureClient() override; | |
| 133 aura::PropertyConverter* GetPropertyConverter() override; | 132 aura::PropertyConverter* GetPropertyConverter() override; |
| 134 | 133 |
| 135 // ScreenMusDelegate: | 134 // ScreenMusDelegate: |
| 136 void OnWindowManagerFrameValuesChanged() override; | 135 void OnWindowManagerFrameValuesChanged() override; |
| 137 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override; | 136 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override; |
| 138 | 137 |
| 139 // ui:OSExchangeDataProviderFactory::Factory: | 138 // ui:OSExchangeDataProviderFactory::Factory: |
| 140 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override; | 139 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override; |
| 141 | 140 |
| 142 static MusClient* instance_; | 141 static MusClient* instance_; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 162 | 161 |
| 163 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> | 162 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> |
| 164 discardable_shared_memory_manager_; | 163 discardable_shared_memory_manager_; |
| 165 | 164 |
| 166 DISALLOW_COPY_AND_ASSIGN(MusClient); | 165 DISALLOW_COPY_AND_ASSIGN(MusClient); |
| 167 }; | 166 }; |
| 168 | 167 |
| 169 } // namespace views | 168 } // namespace views |
| 170 | 169 |
| 171 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ | 170 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ |
| OLD | NEW |