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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp

Issue 2578053002: Worker: Stop running worker tests with BlinkGC::MainThreadHeapMode (Closed)
Patch Set: Created 4 years 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/WorkerBackingThread.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp b/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
index f9afe4305f38e1bd74d4d74874f7d531c2528821..5a5842220c4b2fa1e1c0fc10f75a177b9bdd3588 100644
--- a/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
@@ -45,9 +45,9 @@ static void removeWorkerIsolate(v8::Isolate* isolate) {
}
WorkerBackingThread::WorkerBackingThread(const char* name,
- bool shouldCallGCOnShutdown,
- BlinkGC::ThreadHeapMode threadHeapMode)
- : m_backingThread(WebThreadSupportingGC::create(name, threadHeapMode)),
+ bool shouldCallGCOnShutdown)
+ : m_backingThread(
+ WebThreadSupportingGC::create(name, BlinkGC::PerThreadHeapMode)),
m_isOwningThread(true),
m_shouldCallGCOnShutdown(shouldCallGCOnShutdown) {}

Powered by Google App Engine
This is Rietveld 408576698