Index: ui/events/event_constants.h |
diff --git a/ui/events/event_constants.h b/ui/events/event_constants.h |
index c3677ada7ada3b1294c8071dd94f1a93ebb4148d..f154d9ce592d6db3dfddb87886b7a5a6a44e26e3 100644 |
--- a/ui/events/event_constants.h |
+++ b/ui/events/event_constants.h |
@@ -119,12 +119,14 @@ enum MouseEventFlags { |
// Result of dispatching an event. |
enum EventResult { |
- ER_UNHANDLED = 0, // The event hasn't been handled. The event can be |
- // propagated to other handlers. |
- ER_HANDLED = 1 << 0, // The event has already been handled, but it can |
- // still be propagated to other handlers. |
- ER_CONSUMED = 1 << 1, // The event has been handled, and it should not be |
- // propagated to other handlers. |
+ ER_UNHANDLED = 0, // The event hasn't been handled. The event can be |
+ // propagated to other handlers. |
+ ER_HANDLED = 1 << 0, // The event has already been handled, but it can |
+ // still be propagated to other handlers. |
+ ER_CONSUMED = 1 << 1, // The event has been handled, and it should not be |
+ // propagated to other handlers. |
+ ER_DISABLE_SYNC_HANDLING = |
+ 1 << 2, // The event shouldn't be handled synchronously. |
jdduke (slow)
2014/11/17 16:57:13
This comment doesn't really add anything, maybe fl
tdresser
2014/11/17 22:00:36
Done.
|
}; |
// Phase of the event dispatch. |