Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(945)

Unified Diff: services/ui/ws/window_tree_client_unittest.cc

Issue 2764963003: aura-mus: add a drag representation image. (Closed)
Patch Set: Also move the state in WindowTree into a struct. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: services/ui/ws/window_tree_client_unittest.cc
diff --git a/services/ui/ws/window_tree_client_unittest.cc b/services/ui/ws/window_tree_client_unittest.cc
index eb2425f44e05fefe39d172a0763a905b1607ec69..6e057411fd4859a52d823b1130e5f3736401b4b3 100644
--- a/services/ui/ws/window_tree_client_unittest.cc
+++ b/services/ui/ws/window_tree_client_unittest.cc
@@ -479,6 +479,15 @@ class TestWindowTreeClient : public mojom::WindowTreeClient,
bool janky) override {
NOTIMPLEMENTED();
}
+ void WmBuildDragImage(const gfx::Point& screen_location,
+ const SkBitmap& drag_image,
+ const gfx::Vector2d& drag_image_offset,
+ ui::mojom::PointerKind source) override {}
+ void WmMoveDragImage(const gfx::Point& screen_location,
+ const WmMoveDragImageCallback& callback) override {
+ callback.Run();
+ }
+ void WmDestroyDragImage() override {}
void WmPerformMoveLoop(uint32_t change_id,
uint32_t window_id,
mojom::MoveLoopSource source,

Powered by Google App Engine
This is Rietveld 408576698