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..194256850958eb18f1fc2bc517b79dbb55412007 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/EventDispatchResult.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 DispatchEventResult dispatchEvent(EventDispatcher&) const; |
Event& event() const { return *m_event; } |
protected: |