Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(987)

Unified Diff: third_party/WebKit/Source/core/events/ScopedEventQueue.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698