| 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 #include "ui/aura/test/mus/test_window_tree.h" | 5 #include "ui/aura/test/mus/test_window_tree.h" |
| 6 | 6 |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 | 8 |
| 9 namespace aura { | 9 namespace aura { |
| 10 | 10 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 } | 247 } |
| 248 | 248 |
| 249 void TestWindowTree::SetCanFocus(uint32_t window_id, bool can_focus) {} | 249 void TestWindowTree::SetCanFocus(uint32_t window_id, bool can_focus) {} |
| 250 | 250 |
| 251 void TestWindowTree::SetEventTargetingPolicy( | 251 void TestWindowTree::SetEventTargetingPolicy( |
| 252 uint32_t window_id, | 252 uint32_t window_id, |
| 253 ui::mojom::EventTargetingPolicy policy) {} | 253 ui::mojom::EventTargetingPolicy policy) {} |
| 254 | 254 |
| 255 void TestWindowTree::SetPredefinedCursor(uint32_t change_id, | 255 void TestWindowTree::SetPredefinedCursor(uint32_t change_id, |
| 256 uint32_t window_id, | 256 uint32_t window_id, |
| 257 ui::mojom::Cursor cursor_id) { | 257 ui::mojom::CursorType cursor_id) { |
| 258 OnChangeReceived(change_id); | 258 OnChangeReceived(change_id); |
| 259 } | 259 } |
| 260 | 260 |
| 261 void TestWindowTree::SetWindowTextInputState(uint32_t window_id, | 261 void TestWindowTree::SetWindowTextInputState(uint32_t window_id, |
| 262 mojo::TextInputStatePtr state) {} | 262 mojo::TextInputStatePtr state) {} |
| 263 | 263 |
| 264 void TestWindowTree::SetImeVisibility(uint32_t window_id, | 264 void TestWindowTree::SetImeVisibility(uint32_t window_id, |
| 265 bool visible, | 265 bool visible, |
| 266 mojo::TextInputStatePtr state) {} | 266 mojo::TextInputStatePtr state) {} |
| 267 | 267 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 void TestWindowTree::PerformWindowMove(uint32_t change_id, | 304 void TestWindowTree::PerformWindowMove(uint32_t change_id, |
| 305 uint32_t window_id, | 305 uint32_t window_id, |
| 306 ui::mojom::MoveLoopSource source, | 306 ui::mojom::MoveLoopSource source, |
| 307 const gfx::Point& cursor_location) { | 307 const gfx::Point& cursor_location) { |
| 308 OnChangeReceived(change_id); | 308 OnChangeReceived(change_id); |
| 309 } | 309 } |
| 310 | 310 |
| 311 void TestWindowTree::CancelWindowMove(uint32_t window_id) {} | 311 void TestWindowTree::CancelWindowMove(uint32_t window_id) {} |
| 312 | 312 |
| 313 } // namespace aura | 313 } // namespace aura |
| OLD | NEW |