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

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

Issue 2764963003: aura-mus: add a drag representation image. (Closed)
Patch Set: Patch cleanup. Created 3 years, 9 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 19a5fdf11af87d167694eca94c9d0d2ca02cb768..bf2552a31ff98e7f9c5d8578ada6ad35848d4d1b 100644
--- a/services/ui/public/interfaces/window_tree_constants.mojom
+++ b/services/ui/public/interfaces/window_tree_constants.mojom
@@ -56,6 +56,12 @@ const uint32 kDropEffectMove = 1;
const uint32 kDropEffectCopy = 2;
const uint32 kDropEffectLink = 4;
+// Whether a drag was caused by mouse or touch.
+enum DragEventSource {
sky 2017/03/23 00:05:36 Would it make sense to replace this with PointerKi
Elliot Glaysher 2017/03/23 19:58:44 Removed this and moved to PointerKind. I'm collaps
+ MOUSE = 0,
+ TOUCH
+};
+
// 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