| 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 UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ | 5 #ifndef UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ |
| 6 #define UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ | 6 #define UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 uint32_t window_id, | 170 uint32_t window_id, |
| 171 ui::mojom::Cursor cursor_id) override; | 171 ui::mojom::Cursor cursor_id) override; |
| 172 void SetWindowTextInputState(uint32_t window_id, | 172 void SetWindowTextInputState(uint32_t window_id, |
| 173 mojo::TextInputStatePtr state) override; | 173 mojo::TextInputStatePtr state) override; |
| 174 void SetImeVisibility(uint32_t window_id, | 174 void SetImeVisibility(uint32_t window_id, |
| 175 bool visible, | 175 bool visible, |
| 176 mojo::TextInputStatePtr state) override; | 176 mojo::TextInputStatePtr state) override; |
| 177 void OnWindowInputEventAck(uint32_t event_id, | 177 void OnWindowInputEventAck(uint32_t event_id, |
| 178 ui::mojom::EventResult result) override; | 178 ui::mojom::EventResult result) override; |
| 179 void DeactivateWindow(uint32_t window_id) override; | 179 void DeactivateWindow(uint32_t window_id) override; |
| 180 void StackAtTop(uint32_t change_id, uint32_t window_id) override; |
| 180 void GetWindowManagerClient( | 181 void GetWindowManagerClient( |
| 181 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManagerClient> internal) | 182 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManagerClient> internal) |
| 182 override; | 183 override; |
| 183 void GetCursorLocationMemory( | 184 void GetCursorLocationMemory( |
| 184 const GetCursorLocationMemoryCallback& callback) override; | 185 const GetCursorLocationMemoryCallback& callback) override; |
| 185 void PerformDragDrop( | 186 void PerformDragDrop( |
| 186 uint32_t change_id, | 187 uint32_t change_id, |
| 187 uint32_t source_window_id, | 188 uint32_t source_window_id, |
| 188 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data, | 189 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data, |
| 189 uint32_t drag_operation) override; | 190 uint32_t drag_operation) override; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 215 gfx::Insets last_client_area_; | 216 gfx::Insets last_client_area_; |
| 216 | 217 |
| 217 base::Optional<gfx::Rect> last_hit_test_mask_; | 218 base::Optional<gfx::Rect> last_hit_test_mask_; |
| 218 | 219 |
| 219 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); | 220 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); |
| 220 }; | 221 }; |
| 221 | 222 |
| 222 } // namespace aura | 223 } // namespace aura |
| 223 | 224 |
| 224 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ | 225 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ |
| OLD | NEW |