| 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
|
|
|