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

Unified Diff: third_party/WebKit/Source/modules/compositorworker/CompositorWorkerManager.cpp

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 5 years, 1 month 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/modules/compositorworker/CompositorWorkerManager.cpp
diff --git a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerManager.cpp b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerManager.cpp
index d450d29458b1e7867eff5f8903ffe970cfaca4ec..370ca773010a3c1c918ddaf808efc49b0e64b2d8 100644
--- a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerManager.cpp
+++ b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerManager.cpp
@@ -73,7 +73,7 @@ WebThreadSupportingGC& CompositorWorkerManager::compositorWorkerThread()
// Platform using a more specialized function
// (e.g. Platform::compositorWorkerThread()).
m_platformThread = adoptPtr(Platform::current()->createThread("CompositorWorker Thread"));
- m_thread = WebThreadSupportingGC::createForThread(m_platformThread.get());
+ m_thread = WebThreadSupportingGC::createForThread(m_platformThread.get(), true);
}
return *m_thread.get();
}

Powered by Google App Engine
This is Rietveld 408576698