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

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

Issue 2266603002: mus: Implement interwindow drag and drop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more comments Created 4 years, 3 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
« no previous file with comments | « services/ui/ws/test_utils.h ('k') | services/ui/ws/window_manager_access_policy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/test_utils.cc
diff --git a/services/ui/ws/test_utils.cc b/services/ui/ws/test_utils.cc
index d8f4a682bffcd0b5bd6af3512a6fe3e6d8ce0bab..bb59ce9aeb694c6d2541a1cb8842b17301086053 100644
--- a/services/ui/ws/test_utils.cc
+++ b/services/ui/ws/test_utils.cc
@@ -352,6 +352,32 @@ void TestWindowTreeClient::OnWindowPredefinedCursorChanged(
tracker_.OnWindowPredefinedCursorChanged(window_id, cursor_id);
}
+void TestWindowTreeClient::OnDragDropStart(
+ mojo::Map<mojo::String, mojo::Array<uint8_t>> mime_data) {}
+
+void TestWindowTreeClient::OnDragEnter(uint32_t window,
+ uint32_t key_state,
+ const gfx::Point& position,
+ uint32_t effect_bitmask,
+ const OnDragEnterCallback& callback) {}
+
+void TestWindowTreeClient::OnDragOver(uint32_t window,
+ uint32_t key_state,
+ const gfx::Point& position,
+ uint32_t effect_bitmask,
+ const OnDragOverCallback& callback) {}
+
+void TestWindowTreeClient::OnDragLeave(uint32_t window) {}
+
+void TestWindowTreeClient::OnCompleteDrop(
+ uint32_t window,
+ uint32_t key_state,
+ const gfx::Point& position,
+ uint32_t effect_bitmask,
+ const OnCompleteDropCallback& callback) {}
+
+void TestWindowTreeClient::OnDragDropDone() {}
+
void TestWindowTreeClient::OnChangeCompleted(uint32_t change_id, bool success) {
if (record_on_change_completed_)
tracker_.OnChangeCompleted(change_id, success);
« no previous file with comments | « services/ui/ws/test_utils.h ('k') | services/ui/ws/window_manager_access_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698