| 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 a28ee9ee32730b1f6b0f084289fceb719a11bb62..864118a30c0d26bbf39420236ec5d04dda1d8536 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| @@ -47,8 +47,8 @@ static void removeWorkerIsolate(v8::Isolate* isolate)
|
| isolates().remove(isolate);
|
| }
|
|
|
| -WorkerBackingThread::WorkerBackingThread(const char* name, bool shouldCallGCOnShutdown)
|
| - : m_backingThread(WebThreadSupportingGC::create(name, BlinkGC::MainThreadHeapMode))
|
| +WorkerBackingThread::WorkerBackingThread(const char* name, bool shouldCallGCOnShutdown, BlinkGC::ThreadHeapMode threadHeapMode)
|
| + : m_backingThread(WebThreadSupportingGC::create(name, threadHeapMode))
|
| , m_isOwningThread(true)
|
| , m_shouldCallGCOnShutdown(shouldCallGCOnShutdown)
|
| {
|
|
|