| 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 686d0a94768d1c9bbaee3e62dc4ddb3a02783177..0be18533489aa8d75c3b09fe6e496bf46fe56779 100644
|
| --- a/third_party/WebKit/Source/core/events/Event.h
|
| +++ b/third_party/WebKit/Source/core/events/Event.h
|
| @@ -194,7 +194,7 @@ public:
|
| void setUnderlyingEvent(Event*);
|
|
|
| bool hasEventPath() { return m_eventPath; }
|
| - EventPath& eventPath() { ASSERT(m_eventPath); return *m_eventPath; }
|
| + EventPath& eventPath() { DCHECK(m_eventPath); return *m_eventPath; }
|
| void initEventPath(Node&);
|
|
|
| HeapVector<Member<EventTarget>> path(ScriptState*) const;
|
|
|