| Index: third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h b/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h
|
| index ba4c3ffc5285bcc902964a3f2c3d0c91b97b075f..9882f88d9b609eae7b36a9e85da94d4356441dc5 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBEventDispatcher.h
|
| @@ -29,6 +29,7 @@
|
| #ifndef IDBEventDispatcher_h
|
| #define IDBEventDispatcher_h
|
|
|
| +#include "core/events/EventTarget.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/RefPtr.h"
|
| @@ -37,12 +38,11 @@
|
| namespace blink {
|
|
|
| class Event;
|
| -class EventTarget;
|
|
|
| class IDBEventDispatcher {
|
| STATIC_ONLY(IDBEventDispatcher);
|
| public:
|
| - static bool dispatch(Event*, WillBeHeapVector<RefPtrWillBeMember<EventTarget>>&); // The target first and then its ancestors in order of how the event bubbles.
|
| + static WebInputEventResult dispatch(Event*, WillBeHeapVector<RefPtrWillBeMember<EventTarget>>&); // The target first and then its ancestors in order of how the event bubbles.
|
| };
|
|
|
| } // namespace blink
|
|
|