| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_UI_WS_WINDOW_SERVER_TEST_BASE_H_ | 5 #ifndef SERVICES_UI_WS_WINDOW_SERVER_TEST_BASE_H_ |
| 6 #define SERVICES_UI_WS_WINDOW_SERVER_TEST_BASE_H_ | 6 #define SERVICES_UI_WS_WINDOW_SERVER_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 bool OnConnect(const service_manager::Identity& remote_identity, | 77 bool OnConnect(const service_manager::Identity& remote_identity, |
| 78 service_manager::InterfaceRegistry* registry) override; | 78 service_manager::InterfaceRegistry* registry) override; |
| 79 | 79 |
| 80 // WindowTreeClientDelegate: | 80 // WindowTreeClientDelegate: |
| 81 void OnEmbed( | 81 void OnEmbed( |
| 82 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; | 82 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override; |
| 83 void OnLostConnection(aura::WindowTreeClient* client) override; | 83 void OnLostConnection(aura::WindowTreeClient* client) override; |
| 84 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; | 84 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override; |
| 85 void OnPointerEventObserved(const ui::PointerEvent& event, | 85 void OnPointerEventObserved(const ui::PointerEvent& event, |
| 86 aura::Window* target) override; | 86 aura::Window* target) override; |
| 87 aura::client::CaptureClient* GetCaptureClient() override; | |
| 88 aura::PropertyConverter* GetPropertyConverter() override; | 87 aura::PropertyConverter* GetPropertyConverter() override; |
| 89 | 88 |
| 90 // WindowManagerDelegate: | 89 // WindowManagerDelegate: |
| 91 void SetWindowManagerClient(aura::WindowManagerClient* client) override; | 90 void SetWindowManagerClient(aura::WindowManagerClient* client) override; |
| 92 bool OnWmSetBounds(aura::Window* window, gfx::Rect* bounds) override; | 91 bool OnWmSetBounds(aura::Window* window, gfx::Rect* bounds) override; |
| 93 bool OnWmSetProperty( | 92 bool OnWmSetProperty( |
| 94 aura::Window* window, | 93 aura::Window* window, |
| 95 const std::string& name, | 94 const std::string& name, |
| 96 std::unique_ptr<std::vector<uint8_t>>* new_data) override; | 95 std::unique_ptr<std::vector<uint8_t>>* new_data) override; |
| 97 void OnWmSetCanFocus(aura::Window* window, bool can_focus) override; | 96 void OnWmSetCanFocus(aura::Window* window, bool can_focus) override; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 aura::WindowManagerClient* window_manager_client_ = nullptr; | 148 aura::WindowManagerClient* window_manager_client_ = nullptr; |
| 150 | 149 |
| 151 bool window_tree_client_lost_connection_ = false; | 150 bool window_tree_client_lost_connection_ = false; |
| 152 | 151 |
| 153 DISALLOW_COPY_AND_ASSIGN(WindowServerTestBase); | 152 DISALLOW_COPY_AND_ASSIGN(WindowServerTestBase); |
| 154 }; | 153 }; |
| 155 | 154 |
| 156 } // namespace ui | 155 } // namespace ui |
| 157 | 156 |
| 158 #endif // SERVICES_UI_WS_WINDOW_SERVER_TEST_BASE_H_ | 157 #endif // SERVICES_UI_WS_WINDOW_SERVER_TEST_BASE_H_ |
| OLD | NEW |