| Index: third_party/WebKit/Source/core/events/Event.h
|
| diff --git a/third_party/WebKit/Source/core/events/Event.h b/third_party/WebKit/Source/core/events/Event.h
|
| index bfe0b65fd212991db66c1fd72457d644de71425f..479e499457e29bd6f0877177d599e4e77e945ade 100644
|
| --- a/third_party/WebKit/Source/core/events/Event.h
|
| +++ b/third_party/WebKit/Source/core/events/Event.h
|
| @@ -265,6 +265,10 @@ class CORE_EXPORT Event : public GarbageCollectedFinalized<Event>,
|
| virtual void receivedTarget();
|
|
|
| void setCanBubble(bool bubble) { m_canBubble = bubble; }
|
| + void setComposed(bool composed) {
|
| + DCHECK(!isBeingDispatched());
|
| + m_composed = composed;
|
| + }
|
|
|
| PassiveMode handlingPassive() const { return m_handlingPassive; }
|
|
|
|
|