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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h

Issue 1477023003: Refactor the Heap into ThreadHeap to prepare for per thread heaps Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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..8650045113191117d38b76656ee65f42751eba87 100644
--- a/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
+++ b/third_party/WebKit/Source/core/workers/WorkerMessagingProxy.h
@@ -110,7 +110,7 @@ private:
Vector<OwnPtr<ExecutionContextTask>> m_queuedEarlyTasks; // Tasks are queued here until there's a thread object created.
OwnPtrWillBePersistent<WorkerInspectorProxy> m_workerInspectorProxy;
- OwnPtrWillBePersistent<WorkerClients> m_workerClients;
+ OwnPtrWillBeXThreadPersistent<WorkerClients> m_workerClients;
haraken 2016/01/07 08:06:21 Just to confirm: WorkerMessagingProxy (and the Per
RefPtr<WorkerLoaderProxy> m_loaderProxy;
};

Powered by Google App Engine
This is Rietveld 408576698