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

Unified Diff: ash/mus/window_manager.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: ash/mus/window_manager.cc
diff --git a/ash/mus/window_manager.cc b/ash/mus/window_manager.cc
index 3be7ba8a1dee8a33e9aca00f3fa46e8ac4e5b951..0bfdfdd454366b9386fd10cb4d1e4d5d8b667110 100644
--- a/ash/mus/window_manager.cc
+++ b/ash/mus/window_manager.cc
@@ -240,5 +240,17 @@ void WindowManager::OnAccelerator(uint32_t id, const ui::Event& event) {
}
}
+void WindowManager::OnWmPerformMoveLoop(
+ ::mus::Window* window,
+ ::mus::mojom::MoveLoopSource source,
+ const gfx::Point& cursor_location,
+ const base::Callback<void(bool)>& on_done) {
+ NOTIMPLEMENTED();
+}
+
+void WindowManager::OnWmCancelMoveLoop(::mus::Window* window) {
+ NOTIMPLEMENTED();
+}
+
} // namespace mus
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698