| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 friend class AuraInit; | 108 friend class AuraInit; |
| 109 friend class test::MusClientTestApi; | 109 friend class test::MusClientTestApi; |
| 110 | 110 |
| 111 // aura::WindowTreeClientDelegate: | 111 // aura::WindowTreeClientDelegate: |
| 112 void OnEmbed( | 112 void OnEmbed( |
| 113 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; | 113 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; |
| 114 void OnLostConnection(aura::WindowTreeClient* client) override; | 114 void OnLostConnection(aura::WindowTreeClient* client) override; |
| 115 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; | 115 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; |
| 116 void OnPointerEventObserved(const ui::PointerEvent& event, | 116 void OnPointerEventObserved(const ui::PointerEvent& event, |
| 117 aura::Window* target) override; | 117 aura::Window* target) override; |
| 118 aura::client::CaptureClient* GetCaptureClient() override; | |
| 119 aura::PropertyConverter* GetPropertyConverter() override; | 118 aura::PropertyConverter* GetPropertyConverter() override; |
| 120 | 119 |
| 121 // ScreenMusDelegate: | 120 // ScreenMusDelegate: |
| 122 void OnWindowManagerFrameValuesChanged() override; | 121 void OnWindowManagerFrameValuesChanged() override; |
| 123 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override; | 122 aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) override; |
| 124 | 123 |
| 125 // ui:OSExchangeDataProviderFactory::Factory: | 124 // ui:OSExchangeDataProviderFactory::Factory: |
| 126 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override; | 125 std::unique_ptr<OSExchangeData::Provider> BuildProvider() override; |
| 127 | 126 |
| 128 static MusClient* instance_; | 127 static MusClient* instance_; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 147 | 146 |
| 148 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> | 147 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> |
| 149 discardable_shared_memory_manager_; | 148 discardable_shared_memory_manager_; |
| 150 | 149 |
| 151 DISALLOW_COPY_AND_ASSIGN(MusClient); | 150 DISALLOW_COPY_AND_ASSIGN(MusClient); |
| 152 }; | 151 }; |
| 153 | 152 |
| 154 } // namespace views | 153 } // namespace views |
| 155 | 154 |
| 156 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ | 155 #endif // UI_VIEWS_MUS_MUS_CLIENT_H_ |
| OLD | NEW |