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

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: 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/window_tree.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..75a04d0df157471abd93d091285719fe53178610 100644
--- a/services/ui/ws/window_tree_client_unittest.cc
+++ b/services/ui/ws/window_tree_client_unittest.cc
@@ -371,6 +371,36 @@ class TestWindowTreeClient : public mojom::WindowTreeClient,
mojom::Cursor cursor_id) override {
tracker_.OnWindowPredefinedCursorChanged(window_id, cursor_id);
}
+
+ void OnDragDropStart(
+ mojo::Map<mojo::String, mojo::Array<uint8_t>> drag_data) override {
+ NOTIMPLEMENTED();
+ }
+
+ void OnDragEnter(uint32_t window,
+ 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 OnCompleteDrop(uint32_t window,
+ uint32_t key_state,
+ const gfx::Point& position,
+ uint32_t effect_bitmask,
+ const OnCompleteDropCallback& callback) override {
+ NOTIMPLEMENTED();
+ }
+ void OnDragDropDone() 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;
« no previous file with comments | « services/ui/ws/window_tree.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698