| Index: third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| index d58381fc25b7dc3bf8cc314ea8188aba66d34ae5..972d7208a1003ccd1bd248aed4fed8ad2f9cbb26 100644
|
| --- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| @@ -346,7 +346,7 @@ void WebSharedWorkerImpl::onScriptLoaderFinished()
|
| InspectorInstrumentation::scriptImported(m_loadingDocument.get(), m_mainScriptLoader->identifier(), m_mainScriptLoader->script());
|
| m_mainScriptLoader.clear();
|
|
|
| - workerThread()->start(startupData.release());
|
| + workerThread()->start(std::move(startupData));
|
| m_workerInspectorProxy->workerThreadCreated(toDocument(m_loadingDocument.get()), workerThread(), m_url);
|
| m_client->workerScriptLoaded();
|
| }
|
|
|