| Index: Source/core/workers/SharedWorkerThread.cpp
|
| diff --git a/Source/core/workers/SharedWorkerThread.cpp b/Source/core/workers/SharedWorkerThread.cpp
|
| index 576361da373a45a004afa3888df1cff46ad59773..a65a7a678e3bd1d123e0c9c9798bc32665688d0b 100644
|
| --- a/Source/core/workers/SharedWorkerThread.cpp
|
| +++ b/Source/core/workers/SharedWorkerThread.cpp
|
| @@ -57,11 +57,11 @@ PassRefPtrWillBeRawPtr<WorkerGlobalScope> SharedWorkerThread::createWorkerGlobal
|
| return SharedWorkerGlobalScope::create(m_name, this, startupData);
|
| }
|
|
|
| -WebThreadSupportingGC& SharedWorkerThread::backingThread()
|
| +WebThread& SharedWorkerThread::backingThread()
|
| {
|
| if (!m_thread)
|
| - m_thread = WebThreadSupportingGC::create("SharedWorker Thread");
|
| - return *m_thread.get();
|
| + m_thread = adoptPtr(Platform::current()->createThread("SharedWorker Thread"));
|
| + return *m_thread;
|
| }
|
|
|
| } // namespace blink
|
|
|