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

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

Issue 2266603002: mus: Implement interwindow drag and drop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Uploaded for a few comments. Created 4 years, 4 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 2931798f6eb33962f4c047364561c749b4df74f3..ad40b5baad5819be11b6bf5ae124d6e0fba5ca4c 100644
--- a/services/ui/ws/window_tree_client_unittest.cc
+++ b/services/ui/ws/window_tree_client_unittest.cc
@@ -371,6 +371,29 @@ class TestWindowTreeClient : public mojom::WindowTreeClient,
mojom::Cursor cursor_id) override {
tracker_.OnWindowPredefinedCursorChanged(window_id, cursor_id);
}
+ void OnDragEnter(uint32_t window,
+ mojo::Map<mojo::String, mojo::Array<uint8_t>> drag_data,
+ uint32_t key_state,
+ const gfx::Point& position,
+ uint32_t effect_bitmask,
+ const OnDragEnterCallback& callback) override {
+ NOTIMPLEMENTED();
+ }
+ void OnDragOver(uint32_t window,
+ uint32_t key_state,
+ const gfx::Point& position,
+ uint32_t effect_bitmask,
+ const OnDragOverCallback& callback) override {
+ NOTIMPLEMENTED();
+ }
+ void OnDragLeave(uint32_t window) override { NOTIMPLEMENTED(); }
+ void OnDragDrop(uint32_t window,
+ uint32_t key_state,
+ const gfx::Point& position,
+ uint32_t effect_bitmask,
+ const OnDragDropCallback& callback) override {
+ NOTIMPLEMENTED();
+ }
void OnChangeCompleted(uint32_t change_id, bool success) override {
if (waiting_change_id_ == change_id && change_completed_run_loop_) {
on_change_completed_result_ = success;

Powered by Google App Engine
This is Rietveld 408576698