| 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 aac5fb5a75d7b3201f79ba9c974b17652da8e130..534420e510edd88f80bba09f8544230b83a91826 100644
|
| --- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| @@ -216,7 +216,7 @@ void WebSharedWorkerImpl::reportException(const String& errorMessage, int lineNu
|
| // Not suppported in SharedWorker.
|
| }
|
|
|
| -void WebSharedWorkerImpl::reportConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>)
|
| +void WebSharedWorkerImpl::reportConsoleMessage(RawPtr<ConsoleMessage>)
|
| {
|
| // Not supported in SharedWorker.
|
| }
|
| @@ -329,11 +329,11 @@ void WebSharedWorkerImpl::onScriptLoaderFinished()
|
| // FIXME: this document's origin is pristine and without any extra privileges. (crbug.com/254993)
|
| SecurityOrigin* starterOrigin = document->securityOrigin();
|
|
|
| - OwnPtrWillBeRawPtr<WorkerClients> workerClients = WorkerClients::create();
|
| + RawPtr<WorkerClients> workerClients = WorkerClients::create();
|
| provideLocalFileSystemToWorker(workerClients.get(), LocalFileSystemClient::create());
|
| WebSecurityOrigin webSecurityOrigin(m_loadingDocument->securityOrigin());
|
| provideContentSettingsClientToWorker(workerClients.get(), adoptPtr(m_client->createWorkerContentSettingsClientProxy(webSecurityOrigin)));
|
| - RefPtrWillBeRawPtr<ContentSecurityPolicy> contentSecurityPolicy = m_mainScriptLoader->releaseContentSecurityPolicy();
|
| + RawPtr<ContentSecurityPolicy> contentSecurityPolicy = m_mainScriptLoader->releaseContentSecurityPolicy();
|
| OwnPtr<WorkerThreadStartupData> startupData = WorkerThreadStartupData::create(
|
| m_url,
|
| m_loadingDocument->userAgent(),
|
|
|