| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp
|
| index 933be5c7c8e2850518107208f3ecc818208d49be..a53614a5e7f4e3d855d8bb96cc14c4cd6c2c674a 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp
|
| @@ -51,9 +51,9 @@ ServiceWorkerThread::~ServiceWorkerThread()
|
| {
|
| }
|
|
|
| -WorkerGlobalScope* ServiceWorkerThread::createWorkerGlobalScope(PassOwnPtr<WorkerThreadStartupData> startupData)
|
| +WorkerGlobalScope* ServiceWorkerThread::createWorkerGlobalScope(WorkerThreadStartupData* startupData)
|
| {
|
| - return ServiceWorkerGlobalScope::create(this, std::move(startupData));
|
| + return ServiceWorkerGlobalScope::create(this, startupData);
|
| }
|
|
|
| } // namespace blink
|
|
|