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

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

Issue 2204183002: Prepare CompositorWorker for per thread heap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 3 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/WorkerGlobalScope.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
index 505233489d38d01b4454fc5105ce2c12f447a019..52531c002fc94890fb5396e86ff9d8e72ee6287f 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
@@ -75,7 +75,7 @@ public:
virtual CachedMetadataHandler* createWorkerScriptCachedMetadataHandler(const KURL& scriptURL, const Vector<char>* metaData) { return nullptr; }
KURL completeURL(const String&) const;
- void dispose() final;
+ virtual void dispose();
void exceptionUnhandled(int exceptionId);
void registerEventListener(V8AbstractEventListener*);
@@ -172,7 +172,7 @@ private:
Member<WorkerEventQueue> m_eventQueue;
- Member<WorkerClients> m_workerClients;
+ CrossThreadPersistent<WorkerClients> m_workerClients;
DOMTimerCoordinator m_timers;

Powered by Google App Engine
This is Rietveld 408576698