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

Unified Diff: third_party/WebKit/Source/core/events/DOMWindowEventQueue.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/DOMWindowEventQueue.h
diff --git a/third_party/WebKit/Source/core/events/DOMWindowEventQueue.h b/third_party/WebKit/Source/core/events/DOMWindowEventQueue.h
index e05fe8329333e1570d5a8127dfaee3921e27c9f6..92caaf6f8fd4ac70349408ef0df6e6c9bf2306e4 100644
--- a/third_party/WebKit/Source/core/events/DOMWindowEventQueue.h
+++ b/third_party/WebKit/Source/core/events/DOMWindowEventQueue.h
@@ -47,12 +47,12 @@ class ExecutionContext;
class DOMWindowEventQueue final : DOMWINDOWEVENTQUEUE_BASE_CLASSES {
public:
- static PassRefPtrWillBeRawPtr<DOMWindowEventQueue> create(ExecutionContext*);
+ static RawPtr<DOMWindowEventQueue> create(ExecutionContext*);
~DOMWindowEventQueue() override;
// EventQueue
DECLARE_VIRTUAL_TRACE();
- bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override;
+ bool enqueueEvent(RawPtr<Event>) override;
bool cancelEvent(Event*) override;
void close() override;
@@ -60,10 +60,10 @@ private:
explicit DOMWindowEventQueue(ExecutionContext*);
void pendingEventTimerFired();
- void dispatchEvent(PassRefPtrWillBeRawPtr<Event>);
+ void dispatchEvent(RawPtr<Event>);
- OwnPtrWillBeMember<DOMWindowEventQueueTimer> m_pendingEventTimer;
- WillBeHeapListHashSet<RefPtrWillBeMember<Event>, 16> m_queuedEvents;
+ Member<DOMWindowEventQueueTimer> m_pendingEventTimer;
+ HeapListHashSet<Member<Event>, 16> m_queuedEvents;
bool m_isClosed;
friend class DOMWindowEventQueueTimer;
« no previous file with comments | « third_party/WebKit/Source/core/events/CustomEvent.h ('k') | third_party/WebKit/Source/core/events/DOMWindowEventQueue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698