| 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 "services/ui/public/cpp/tests/test_window_tree.h" | 5 #include "services/ui/public/cpp/tests/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 ui { | 9 namespace ui { |
| 10 | 10 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 } | 120 } |
| 121 | 121 |
| 122 void TestWindowTree::ReleaseCapture(uint32_t change_id, uint32_t window_id) { | 122 void TestWindowTree::ReleaseCapture(uint32_t change_id, uint32_t window_id) { |
| 123 got_change_ = true; | 123 got_change_ = true; |
| 124 change_id_ = change_id; | 124 change_id_ = change_id; |
| 125 } | 125 } |
| 126 | 126 |
| 127 void TestWindowTree::SetEventObserver(mojom::EventMatcherPtr matcher, | 127 void TestWindowTree::SetEventObserver(mojom::EventMatcherPtr matcher, |
| 128 uint32_t observer_id) {} | 128 uint32_t observer_id) {} |
| 129 | 129 |
| 130 void TestWindowTree::StartPointerWatcher(bool want_moves, |
| 131 uint32_t pointer_watcher_id) {} |
| 132 |
| 133 void TestWindowTree::StopPointerWatcher() {} |
| 134 |
| 130 void TestWindowTree::Embed(uint32_t window_id, | 135 void TestWindowTree::Embed(uint32_t window_id, |
| 131 mojom::WindowTreeClientPtr client, | 136 mojom::WindowTreeClientPtr client, |
| 132 uint32_t flags, | 137 uint32_t flags, |
| 133 const EmbedCallback& callback) {} | 138 const EmbedCallback& callback) {} |
| 134 | 139 |
| 135 void TestWindowTree::SetFocus(uint32_t change_id, uint32_t window_id) { | 140 void TestWindowTree::SetFocus(uint32_t change_id, uint32_t window_id) { |
| 136 got_change_ = true; | 141 got_change_ = true; |
| 137 change_id_ = change_id; | 142 change_id_ = change_id; |
| 138 } | 143 } |
| 139 | 144 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 168 } | 173 } |
| 169 | 174 |
| 170 void TestWindowTree::PerformWindowMove(uint32_t change_id, | 175 void TestWindowTree::PerformWindowMove(uint32_t change_id, |
| 171 uint32_t window_id, | 176 uint32_t window_id, |
| 172 mojom::MoveLoopSource source, | 177 mojom::MoveLoopSource source, |
| 173 const gfx::Point& cursor_location) {} | 178 const gfx::Point& cursor_location) {} |
| 174 | 179 |
| 175 void TestWindowTree::CancelWindowMove(uint32_t window_id) {} | 180 void TestWindowTree::CancelWindowMove(uint32_t window_id) {} |
| 176 | 181 |
| 177 } // namespace ui | 182 } // namespace ui |
| OLD | NEW |