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

Unified Diff: components/mus/test_wm/test_wm.cc

Issue 2060513002: Tab dragging as implemented as a mus API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Thread move loop source through api. Created 4 years, 6 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: components/mus/test_wm/test_wm.cc
diff --git a/components/mus/test_wm/test_wm.cc b/components/mus/test_wm/test_wm.cc
index 39ad375983987d37d4a157cc241854b96f6018fa..f34adead9e4ccbbc623c3645408ebe2f958a78a1 100644
--- a/components/mus/test_wm/test_wm.cc
+++ b/components/mus/test_wm/test_wm.cc
@@ -89,6 +89,13 @@ class TestWM : public shell::ShellClient,
void OnAccelerator(uint32_t id, const ui::Event& event) override {
// Don't care.
}
+ void OnWmPerformMoveLoop(::mus::Window* window,
+ ::mus::mojom::MoveLoopSource source,
+ const gfx::Point& cursor_location,
+ const base::Callback<void(bool)>& on_done) override {
+ // Don't care.
+ }
+ void OnWmCancelMoveLoop(::mus::Window* window) override {}
mus::Window* root_ = nullptr;
mus::WindowManagerClient* window_manager_client_ = nullptr;

Powered by Google App Engine
This is Rietveld 408576698