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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 uint32_t change_id, | 472 uint32_t change_id, |
473 ClientSpecificId requesting_client_id, | 473 ClientSpecificId requesting_client_id, |
474 const std::unordered_map<std::string, std::vector<uint8_t>>& properties) | 474 const std::unordered_map<std::string, std::vector<uint8_t>>& properties) |
475 override { | 475 override { |
476 NOTIMPLEMENTED(); | 476 NOTIMPLEMENTED(); |
477 } | 477 } |
478 void WmClientJankinessChanged(ClientSpecificId client_id, | 478 void WmClientJankinessChanged(ClientSpecificId client_id, |
479 bool janky) override { | 479 bool janky) override { |
480 NOTIMPLEMENTED(); | 480 NOTIMPLEMENTED(); |
481 } | 481 } |
| 482 void WmBuildDragImage(const gfx::Point& cursor_location, |
| 483 const SkBitmap& drag_image, |
| 484 const gfx::Vector2d& drag_image_offset, |
| 485 ui::mojom::DragEventSource source) override {} |
| 486 void WmMoveDragImage(const gfx::Point& cursor_location, |
| 487 const WmMoveDragImageCallback& callback) override { |
| 488 callback.Run(); |
| 489 } |
| 490 void WmDestroyDragImage() override {} |
482 void WmPerformMoveLoop(uint32_t change_id, | 491 void WmPerformMoveLoop(uint32_t change_id, |
483 uint32_t window_id, | 492 uint32_t window_id, |
484 mojom::MoveLoopSource source, | 493 mojom::MoveLoopSource source, |
485 const gfx::Point& cursor_location) override { | 494 const gfx::Point& cursor_location) override { |
486 NOTIMPLEMENTED(); | 495 NOTIMPLEMENTED(); |
487 } | 496 } |
488 void WmCancelMoveLoop(uint32_t window_id) override { NOTIMPLEMENTED(); } | 497 void WmCancelMoveLoop(uint32_t window_id) override { NOTIMPLEMENTED(); } |
489 void WmDeactivateWindow(uint32_t window_id) override { NOTIMPLEMENTED(); } | 498 void WmDeactivateWindow(uint32_t window_id) override { NOTIMPLEMENTED(); } |
490 void WmStackAbove(uint32_t change_id, uint32_t above_id, | 499 void WmStackAbove(uint32_t change_id, uint32_t above_id, |
491 uint32_t below_id) override { | 500 uint32_t below_id) override { |
(...skipping 1757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2249 | 2258 |
2250 // TODO(sky): make sure coverage of what was | 2259 // TODO(sky): make sure coverage of what was |
2251 // WindowManagerTest.SecondEmbedRoot_InitService and | 2260 // WindowManagerTest.SecondEmbedRoot_InitService and |
2252 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window | 2261 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window |
2253 // manager | 2262 // manager |
2254 // tests. | 2263 // tests. |
2255 | 2264 |
2256 } // namespace test | 2265 } // namespace test |
2257 } // namespace ws | 2266 } // namespace ws |
2258 } // namespace ui | 2267 } // namespace ui |
OLD | NEW |