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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerMessagingProxy.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/workers/WorkerMessagingProxy.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
index 48ef8be63b913ca781ffec36c7bacc7bf0f542ab..617ce7d55982a39db1e5acad16905d9470580ffa 100644
--- a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
@@ -76,7 +76,7 @@ public:
ExecutionContext* getExecutionContext() const { return m_executionContext.get(); }
protected:
- WorkerMessagingProxy(InProcessWorkerBase*, PassOwnPtrWillBeRawPtr<WorkerClients>);
+ WorkerMessagingProxy(InProcessWorkerBase*, RawPtr<WorkerClients>);
~WorkerMessagingProxy() override;
virtual PassOwnPtr<WorkerThread> createWorkerThread(double originTime) = 0;
@@ -94,7 +94,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;
@@ -106,9 +106,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