| Index: third_party/WebKit/Source/core/events/ScopedEventQueue.h
|
| diff --git a/third_party/WebKit/Source/core/events/ScopedEventQueue.h b/third_party/WebKit/Source/core/events/ScopedEventQueue.h
|
| index 466db3da4e600a224dbd573bf43728716dc97ba7..df33df038cfe16dd3f86431305694a8aee06051f 100644
|
| --- a/third_party/WebKit/Source/core/events/ScopedEventQueue.h
|
| +++ b/third_party/WebKit/Source/core/events/ScopedEventQueue.h
|
| @@ -47,7 +47,7 @@ class CORE_EXPORT ScopedEventQueue {
|
| public:
|
| ~ScopedEventQueue();
|
|
|
| - void enqueueEventDispatchMediator(PassRefPtrWillBeRawPtr<EventDispatchMediator>);
|
| + void enqueueEventDispatchMediator(RawPtr<EventDispatchMediator>);
|
| void dispatchAllEvents();
|
| static ScopedEventQueue* instance();
|
|
|
| @@ -58,9 +58,9 @@ public:
|
| private:
|
| ScopedEventQueue();
|
| static void initialize();
|
| - void dispatchEvent(PassRefPtrWillBeRawPtr<EventDispatchMediator>) const;
|
| + void dispatchEvent(RawPtr<EventDispatchMediator>) const;
|
|
|
| - WillBePersistentHeapVector<RefPtrWillBeMember<EventDispatchMediator>> m_queuedEventDispatchMediators;
|
| + PersistentHeapVector<Member<EventDispatchMediator>> m_queuedEventDispatchMediators;
|
| unsigned m_scopingLevel;
|
|
|
| static ScopedEventQueue* s_instance;
|
|
|