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

Unified Diff: Source/core/workers/WorkerEventQueue.h

Issue 331623002: Oilpan: Prepare to move EventQueue and its subclasses to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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: Source/core/workers/WorkerEventQueue.h
diff --git a/Source/core/workers/WorkerEventQueue.h b/Source/core/workers/WorkerEventQueue.h
index 9fe0ad57cd6e8541811a37156ee4ea86a95a1364..a0ac56f9617535aa65921d580a4a4979a855d57f 100644
--- a/Source/core/workers/WorkerEventQueue.h
+++ b/Source/core/workers/WorkerEventQueue.h
@@ -39,7 +39,7 @@ class Event;
class Node;
class ExecutionContext;
-class WorkerEventQueue FINAL : public NoBaseWillBeGarbageCollectedFinalized<WorkerEventQueue>, public EventQueue {
+class WorkerEventQueue FINAL : public EventQueue {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
@@ -56,7 +56,7 @@ private:
explicit WorkerEventQueue(ExecutionContext*);
void removeEvent(Event*);
- ExecutionContext* m_executionContext;
+ RawPtrWillBeMember<ExecutionContext> m_executionContext;
bool m_isClosed;
class EventDispatcherTask;

Powered by Google App Engine
This is Rietveld 408576698