Chromium Code Reviews| 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 e2074dd1a552b65efdc6b9c0d7419c24aae861ac..591f1b11e0f341494a3f4f214ccbc0dec853f69d 100644 |
| --- a/third_party/WebKit/Source/core/events/Event.h |
| +++ b/third_party/WebKit/Source/core/events/Event.h |
| @@ -159,7 +159,9 @@ class CORE_EXPORT Event : public GarbageCollectedFinalized<Event>, |
| double platformTimeStamp() const { return m_platformTimeStamp; } |
| void stopPropagation() { m_propagationStopped = true; } |
| + void clearStopPropagation() { m_propagationStopped = false; } |
|
hayato
2016/11/17 05:37:42
Could you rename this to setPropagationStopped(boo
|
| void stopImmediatePropagation() { m_immediatePropagationStopped = true; } |
| + void clearStopImmediatePropagation() { m_immediatePropagationStopped = false; } |
| // IE Extensions |
| EventTarget* srcElement() const { |