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