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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerMessagingProxy.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, 10 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/workers/WorkerMessagingProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
index 95d31d048ef2485a4493b5084d964c05c84e7763..92f831897a1e048230104e9068d2431ae8b76d08 100644
--- a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
@@ -78,7 +78,7 @@ public:
ExecutionContext* executionContext() const { return m_executionContext.get(); }
protected:
- WorkerMessagingProxy(InProcessWorkerBase*, PassOwnPtrWillBeRawPtr<WorkerClients>);
+ WorkerMessagingProxy(InProcessWorkerBase*, RawPtr<WorkerClients>);
~WorkerMessagingProxy() override;
virtual PassRefPtr<WorkerThread> createWorkerThread(double originTime) = 0;
@@ -96,7 +96,7 @@ private:
void postTaskToLoader(PassOwnPtr<ExecutionContextTask>) override;
bool postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask>) override;
- RefPtrWillBePersistent<ExecutionContext> m_executionContext;
+ Persistent<ExecutionContext> m_executionContext;
OwnPtr<WorkerObjectProxy> m_workerObjectProxy;
WeakPersistent<InProcessWorkerBase> m_workerObject;
bool m_mayBeDestroyed;
@@ -108,9 +108,9 @@ private:
bool m_askedToTerminate;
Vector<OwnPtr<ExecutionContextTask>> m_queuedEarlyTasks; // Tasks are queued here until there's a thread object created.
- OwnPtrWillBePersistent<WorkerInspectorProxy> m_workerInspectorProxy;
+ Persistent<WorkerInspectorProxy> m_workerInspectorProxy;
- OwnPtrWillBePersistent<WorkerClients> m_workerClients;
+ Persistent<WorkerClients> m_workerClients;
RefPtr<WorkerLoaderProxy> m_loaderProxy;
};

Powered by Google App Engine
This is Rietveld 408576698