Index: third_party/WebKit/Source/core/events/EventDispatchMediator.h |
diff --git a/third_party/WebKit/Source/core/events/EventDispatchMediator.h b/third_party/WebKit/Source/core/events/EventDispatchMediator.h |
index a0589856bfe9b698e85af57a446f2f0a3c7afe83..599a37aca3e5030609b111a897b86ab2fc34a72c 100644 |
--- a/third_party/WebKit/Source/core/events/EventDispatchMediator.h |
+++ b/third_party/WebKit/Source/core/events/EventDispatchMediator.h |
@@ -31,6 +31,7 @@ |
#ifndef EventDispatchMediator_h |
#define EventDispatchMediator_h |
+#include "core/events/EventTarget.h" |
#include "platform/heap/Handle.h" |
#include "wtf/PassRefPtr.h" |
#include "wtf/RefCounted.h" |
@@ -46,7 +47,7 @@ public: |
static PassRefPtrWillBeRawPtr<EventDispatchMediator> create(PassRefPtrWillBeRawPtr<Event>); |
virtual ~EventDispatchMediator() { } |
DECLARE_VIRTUAL_TRACE(); |
- virtual bool dispatchEvent(EventDispatcher&) const; |
+ virtual EventTarget::DispatchEventResult dispatchEvent(EventDispatcher&) const; |
Event& event() const { return *m_event; } |
protected: |