| 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; |
| 132 aura::PropertyConverter* GetPropertyConverter() override; | 133 aura::PropertyConverter* GetPropertyConverter() override; |
| 133 | 134 |
| 134 // ScreenMusDelegate: | 135 // ScreenMusDelegate: |
| 135 void OnWindowManagerFrameValuesChanged() override; | 136 void OnWindowManagerFrameValuesChanged() override; |
| 136 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override; | 137 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override; |
| 137 | 138 |
| 138 // ui:OSExchangeDataProviderFactory::Factory: | 139 // ui:OSExchangeDataProviderFactory::Factory: |
| 139 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override; | 140 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override; |
| 140 | 141 |
| 141 static MusClient* instance_; | 142 static MusClient* instance_; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 161 | 162 |
| 162 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> | 163 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> |
| 163 discardable_shared_memory_manager_; | 164 discardable_shared_memory_manager_; |
| 164 | 165 |
| 165 DISALLOW_COPY_AND_ASSIGN(MusClient); | 166 DISALLOW_COPY_AND_ASSIGN(MusClient); |
| 166 }; | 167 }; |
| 167 | 168 |
| 168 } // namespace views | 169 } // namespace views |
| 169 | 170 |
| 170 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ | 171 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ |
| OLD | NEW |