| 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 bool janky) override { | 468 bool janky) override { |
| 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 OnAccelerator(uint32_t ack_id, | 479 void OnAccelerator(uint32_t ack_id, |
| 479 uint32_t accelerator_id, | 480 uint32_t accelerator_id, |
| 480 std::unique_ptr<ui::Event> event) override { | 481 std::unique_ptr<ui::Event> event) override { |
| 481 NOTIMPLEMENTED(); | 482 NOTIMPLEMENTED(); |
| 482 } | 483 } |
| 483 | 484 |
| 484 TestChangeTracker tracker_; | 485 TestChangeTracker tracker_; |
| 485 | 486 |
| 486 mojom::WindowTreePtr tree_; | 487 mojom::WindowTreePtr tree_; |
| 487 | 488 |
| (...skipping 1726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2214 | 2215 |
| 2215 // TODO(sky): make sure coverage of what was | 2216 // TODO(sky): make sure coverage of what was |
| 2216 // WindowManagerTest.SecondEmbedRoot_InitService and | 2217 // WindowManagerTest.SecondEmbedRoot_InitService and |
| 2217 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window | 2218 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window |
| 2218 // manager | 2219 // manager |
| 2219 // tests. | 2220 // tests. |
| 2220 | 2221 |
| 2221 } // namespace test | 2222 } // namespace test |
| 2222 } // namespace ws | 2223 } // namespace ws |
| 2223 } // namespace ui | 2224 } // namespace ui |
| OLD | NEW |