| 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 c23d42d22c0191109cb3b5f861d38cdd8a611491..19a5fdf11af87d167694eca94c9d0d2ca02cb768 100644
|
| --- a/services/ui/public/interfaces/window_tree_constants.mojom
|
| +++ b/services/ui/public/interfaces/window_tree_constants.mojom
|
| @@ -35,6 +35,21 @@ enum EventResult {
|
| UNHANDLED,
|
| };
|
|
|
| +enum EventTargetingPolicy {
|
| + // The target is a valid target for events, but none of its descendants are
|
| + // considered.
|
| + TARGET_ONLY,
|
| +
|
| + // The target and its descendants are possible targets. This is the default.
|
| + TARGET_AND_DESCENDANTS,
|
| +
|
| + // The target is not a valid target, but its descendants are possible targets.
|
| + DESCENDANTS_ONLY,
|
| +
|
| + // Neither the target nor its descendants are valid targets.
|
| + NONE
|
| +};
|
| +
|
| // A bitfield of what drag operations are possible.
|
| const uint32 kDropEffectNone = 0;
|
| const uint32 kDropEffectMove = 1;
|
|
|