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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (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/GenericEventQueue.h
diff --git a/third_party/WebKit/Source/core/events/GenericEventQueue.h b/third_party/WebKit/Source/core/events/GenericEventQueue.h
index 3e64a6642b8f3fca1d9247518547e78367315e23..524deceb9f7a6b9b782ffba591c7c0c95f089ac7 100644
--- a/third_party/WebKit/Source/core/events/GenericEventQueue.h
+++ b/third_party/WebKit/Source/core/events/GenericEventQueue.h
@@ -37,14 +37,13 @@
namespace blink {
class CORE_EXPORT GenericEventQueue final : public EventQueue {
- USING_FAST_MALLOC_WILL_BE_REMOVED(GenericEventQueue);
public:
- static PassOwnPtrWillBeRawPtr<GenericEventQueue> create(EventTarget*);
+ static RawPtr<GenericEventQueue> create(EventTarget*);
~GenericEventQueue() override;
// EventQueue
DECLARE_VIRTUAL_TRACE();
- bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override;
+ bool enqueueEvent(RawPtr<Event>) override;
bool cancelEvent(Event*) override;
void close() override;
@@ -55,8 +54,8 @@ private:
explicit GenericEventQueue(EventTarget*);
void timerFired(Timer<GenericEventQueue>*);
- RawPtrWillBeMember<EventTarget> m_owner;
- WillBeHeapVector<RefPtrWillBeMember<Event>> m_pendingEvents;
+ Member<EventTarget> m_owner;
+ HeapVector<Member<Event>> m_pendingEvents;
Timer<GenericEventQueue> m_timer;
bool m_isClosed;
« no previous file with comments | « third_party/WebKit/Source/core/events/FocusEvent.cpp ('k') | third_party/WebKit/Source/core/events/GenericEventQueue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698