| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 void Embed(uint32_t window_id, | 166 void Embed(uint32_t window_id, |
| 167 ui::mojom::WindowTreeClientPtr client, | 167 ui::mojom::WindowTreeClientPtr client, |
| 168 uint32_t flags, | 168 uint32_t flags, |
| 169 const EmbedCallback& callback) override; | 169 const EmbedCallback& callback) override; |
| 170 void SetFocus(uint32_t change_id, uint32_t window_id) override; | 170 void SetFocus(uint32_t change_id, uint32_t window_id) override; |
| 171 void SetCanFocus(uint32_t window_id, bool can_focus) override; | 171 void SetCanFocus(uint32_t window_id, bool can_focus) override; |
| 172 void SetEventTargetingPolicy(uint32_t window_id, | 172 void SetEventTargetingPolicy(uint32_t window_id, |
| 173 ui::mojom::EventTargetingPolicy policy) override; | 173 ui::mojom::EventTargetingPolicy policy) override; |
| 174 void SetPredefinedCursor(uint32_t change_id, | 174 void SetPredefinedCursor(uint32_t change_id, |
| 175 uint32_t window_id, | 175 uint32_t window_id, |
| 176 ui::mojom::Cursor cursor_id) override; | 176 ui::mojom::CursorType cursor_id) override; |
| 177 void SetWindowTextInputState(uint32_t window_id, | 177 void SetWindowTextInputState(uint32_t window_id, |
| 178 mojo::TextInputStatePtr state) override; | 178 mojo::TextInputStatePtr state) override; |
| 179 void SetImeVisibility(uint32_t window_id, | 179 void SetImeVisibility(uint32_t window_id, |
| 180 bool visible, | 180 bool visible, |
| 181 mojo::TextInputStatePtr state) override; | 181 mojo::TextInputStatePtr state) override; |
| 182 void OnWindowInputEventAck(uint32_t event_id, | 182 void OnWindowInputEventAck(uint32_t event_id, |
| 183 ui::mojom::EventResult result) override; | 183 ui::mojom::EventResult result) override; |
| 184 void DeactivateWindow(uint32_t window_id) override; | 184 void DeactivateWindow(uint32_t window_id) override; |
| 185 void StackAbove(uint32_t change_id, uint32_t above_id, | 185 void StackAbove(uint32_t change_id, uint32_t above_id, |
| 186 uint32_t below_id) override; | 186 uint32_t below_id) override; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 gfx::Insets last_client_area_; | 227 gfx::Insets last_client_area_; |
| 228 | 228 |
| 229 base::Optional<gfx::Rect> last_hit_test_mask_; | 229 base::Optional<gfx::Rect> last_hit_test_mask_; |
| 230 | 230 |
| 231 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); | 231 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); |
| 232 }; | 232 }; |
| 233 | 233 |
| 234 } // namespace aura | 234 } // namespace aura |
| 235 | 235 |
| 236 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ | 236 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ |
| OLD | NEW |