| 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_PUBLIC_CPP_TESTS_WINDOW_SERVER_TEST_BASE_H_ | 5 #ifndef SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_TEST_BASE_H_ |
| 6 #define SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_TEST_BASE_H_ | 6 #define SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 bool OnWmSetBounds(Window* window, gfx::Rect* bounds) override; | 75 bool OnWmSetBounds(Window* window, gfx::Rect* bounds) override; |
| 76 bool OnWmSetProperty( | 76 bool OnWmSetProperty( |
| 77 Window* window, | 77 Window* window, |
| 78 const std::string& name, | 78 const std::string& name, |
| 79 std::unique_ptr<std::vector<uint8_t>>* new_data) override; | 79 std::unique_ptr<std::vector<uint8_t>>* new_data) override; |
| 80 Window* OnWmCreateTopLevelWindow( | 80 Window* OnWmCreateTopLevelWindow( |
| 81 std::map<std::string, std::vector<uint8_t>>* properties) override; | 81 std::map<std::string, std::vector<uint8_t>>* properties) override; |
| 82 void OnWmClientJankinessChanged(const std::set<Window*>& client_windows, | 82 void OnWmClientJankinessChanged(const std::set<Window*>& client_windows, |
| 83 bool not_responding) override; | 83 bool not_responding) override; |
| 84 void OnWmNewDisplay(Window* window, const display::Display& display) override; | 84 void OnWmNewDisplay(Window* window, const display::Display& display) override; |
| 85 void OnAccelerator(uint32_t id, const ui::Event& event) override; | 85 mojom::EventResult OnAccelerator(uint32_t accelerator_id, |
| 86 const ui::Event& event) override; |
| 86 | 87 |
| 87 // InterfaceFactory<WindowTreeClient>: | 88 // InterfaceFactory<WindowTreeClient>: |
| 88 void Create(shell::Connection* connection, | 89 void Create(shell::Connection* connection, |
| 89 mojo::InterfaceRequest<mojom::WindowTreeClient> request) override; | 90 mojo::InterfaceRequest<mojom::WindowTreeClient> request) override; |
| 90 | 91 |
| 91 // Used to receive the most recent window tree client loaded by an embed | 92 // Used to receive the most recent window tree client loaded by an embed |
| 92 // action. | 93 // action. |
| 93 WindowTreeClient* most_recent_client_; | 94 WindowTreeClient* most_recent_client_; |
| 94 | 95 |
| 95 private: | 96 private: |
| (...skipping 10 matching lines...) Expand all Loading... |
| 106 WindowManagerClient* window_manager_client_; | 107 WindowManagerClient* window_manager_client_; |
| 107 | 108 |
| 108 bool window_tree_client_destroyed_; | 109 bool window_tree_client_destroyed_; |
| 109 | 110 |
| 110 DISALLOW_COPY_AND_ASSIGN(WindowServerTestBase); | 111 DISALLOW_COPY_AND_ASSIGN(WindowServerTestBase); |
| 111 }; | 112 }; |
| 112 | 113 |
| 113 } // namespace ui | 114 } // namespace ui |
| 114 | 115 |
| 115 #endif // SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_TEST_BASE_H_ | 116 #endif // SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_SERVER_TEST_BASE_H_ |
| OLD | NEW |