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

Unified Diff: services/ui/public/interfaces/window_tree_constants.mojom

Issue 2266603002: mus: Implement interwindow drag and drop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove stray mark 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
Index: services/ui/public/interfaces/window_tree_constants.mojom
diff --git a/services/ui/public/interfaces/window_tree_constants.mojom b/services/ui/public/interfaces/window_tree_constants.mojom
index 6d1f4c0609f36fb28ed640b9dd9baed885260fff..ff29b6aa4dcbf4014a92b0f55d1270f6ff60374a 100644
--- a/services/ui/public/interfaces/window_tree_constants.mojom
+++ b/services/ui/public/interfaces/window_tree_constants.mojom
@@ -47,6 +47,12 @@ enum EventResult {
UNHANDLED,
};
+// A bitfield of what drag operations are possible.
+const uint32 kDropEffectNone = 0;
+const uint32 kDropEffectMove = 1;
+const uint32 kDropEffectCopy = 2;
+const uint32 kDropEffectLink = 4;
+
// When this flag is set in a call to Embed(), the embedder (i.e. the client
// that is making the call to Embed()) will receive events that are targeted to
// the embedded client. The embedded client will not receive any input events

Powered by Google App Engine
This is Rietveld 408576698