| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; | 120 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; |
| 121 void OnLostConnection(aura::WindowTreeClient* client) override; | 121 void OnLostConnection(aura::WindowTreeClient* client) override; |
| 122 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; | 122 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; |
| 123 void OnPointerEventObserved(const ui::PointerEvent& event, | 123 void OnPointerEventObserved(const ui::PointerEvent& event, |
| 124 aura::Window* target) override; | 124 aura::Window* target) override; |
| 125 aura::client::CaptureClient* GetCaptureClient() override; | 125 aura::client::CaptureClient* GetCaptureClient() override; |
| 126 aura::PropertyConverter* GetPropertyConverter() override; | 126 aura::PropertyConverter* GetPropertyConverter() override; |
| 127 | 127 |
| 128 // ScreenMusDelegate: | 128 // ScreenMusDelegate: |
| 129 void OnWindowManagerFrameValuesChanged() override; | 129 void OnWindowManagerFrameValuesChanged() override; |
| 130 gfx::Point GetCursorScreenPoint() override; | |
| 131 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override; | 130 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override; |
| 132 | 131 |
| 133 // ui:OSExchangeDataProviderFactory::Factory: | 132 // ui:OSExchangeDataProviderFactory::Factory: |
| 134 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override; | 133 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override; |
| 135 | 134 |
| 136 static MusClient* instance_; | 135 static MusClient* instance_; |
| 137 | 136 |
| 138 service_manager::Identity identity_; | 137 service_manager::Identity identity_; |
| 139 | 138 |
| 140 std::unique_ptr<base::Thread> io_thread_; | 139 std::unique_ptr<base::Thread> io_thread_; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 159 | 158 |
| 160 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> | 159 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> |
| 161 discardable_shared_memory_manager_; | 160 discardable_shared_memory_manager_; |
| 162 | 161 |
| 163 DISALLOW_COPY_AND_ASSIGN(MusClient); | 162 DISALLOW_COPY_AND_ASSIGN(MusClient); |
| 164 }; | 163 }; |
| 165 | 164 |
| 166 } // namespace views | 165 } // namespace views |
| 167 | 166 |
| 168 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ | 167 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ |
| OLD | NEW |