| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stddef.h> | 5 #include <stddef.h> |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 | 7 |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 NOTIMPLEMENTED(); | 469 NOTIMPLEMENTED(); |
| 470 } | 470 } |
| 471 void WmPerformMoveLoop(uint32_t change_id, | 471 void WmPerformMoveLoop(uint32_t change_id, |
| 472 uint32_t window_id, | 472 uint32_t window_id, |
| 473 mojom::MoveLoopSource source, | 473 mojom::MoveLoopSource source, |
| 474 const gfx::Point& cursor_location) override { | 474 const gfx::Point& cursor_location) override { |
| 475 NOTIMPLEMENTED(); | 475 NOTIMPLEMENTED(); |
| 476 } | 476 } |
| 477 void WmCancelMoveLoop(uint32_t window_id) override { NOTIMPLEMENTED(); } | 477 void WmCancelMoveLoop(uint32_t window_id) override { NOTIMPLEMENTED(); } |
| 478 void WmDeactivateWindow(uint32_t window_id) override { NOTIMPLEMENTED(); } | 478 void WmDeactivateWindow(uint32_t window_id) override { NOTIMPLEMENTED(); } |
| 479 void WmStackAtTop(uint32_t change_id, uint32_t window_id) override { |
| 480 NOTIMPLEMENTED(); |
| 481 } |
| 479 void OnAccelerator(uint32_t ack_id, | 482 void OnAccelerator(uint32_t ack_id, |
| 480 uint32_t accelerator_id, | 483 uint32_t accelerator_id, |
| 481 std::unique_ptr<ui::Event> event) override { | 484 std::unique_ptr<ui::Event> event) override { |
| 482 NOTIMPLEMENTED(); | 485 NOTIMPLEMENTED(); |
| 483 } | 486 } |
| 484 | 487 |
| 485 TestChangeTracker tracker_; | 488 TestChangeTracker tracker_; |
| 486 | 489 |
| 487 mojom::WindowTreePtr tree_; | 490 mojom::WindowTreePtr tree_; |
| 488 | 491 |
| (...skipping 1726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2215 | 2218 |
| 2216 // TODO(sky): make sure coverage of what was | 2219 // TODO(sky): make sure coverage of what was |
| 2217 // WindowManagerTest.SecondEmbedRoot_InitService and | 2220 // WindowManagerTest.SecondEmbedRoot_InitService and |
| 2218 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window | 2221 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window |
| 2219 // manager | 2222 // manager |
| 2220 // tests. | 2223 // tests. |
| 2221 | 2224 |
| 2222 } // namespace test | 2225 } // namespace test |
| 2223 } // namespace ws | 2226 } // namespace ws |
| 2224 } // namespace ui | 2227 } // namespace ui |
| OLD | NEW |