| Index: Source/web/SharedWorkerRepositoryClientImpl.cpp
|
| diff --git a/Source/web/SharedWorkerRepositoryClientImpl.cpp b/Source/web/SharedWorkerRepositoryClientImpl.cpp
|
| index b6f954a625754b2003ce173370ec93f89d7f2bb4..914f9ea00fb69f059958274a2e16fb4ed72de1d6 100644
|
| --- a/Source/web/SharedWorkerRepositoryClientImpl.cpp
|
| +++ b/Source/web/SharedWorkerRepositoryClientImpl.cpp
|
| @@ -56,7 +56,7 @@
|
|
|
| using namespace WebCore;
|
|
|
| -namespace WebKit {
|
| +namespace blink {
|
|
|
| // Callback class that keeps the SharedWorker and WebSharedWorker objects alive while loads are potentially happening, and also translates load errors into error events on the worker.
|
| class SharedWorkerScriptLoader : private WorkerScriptLoaderClient, private WebSharedWorker::ConnectListener {
|
| @@ -130,7 +130,7 @@ void SharedWorkerScriptLoader::notifyFinished()
|
| } else {
|
| InspectorInstrumentation::scriptImported(m_worker->executionContext(), m_scriptLoader->identifier(), m_scriptLoader->script());
|
| // Pass the script off to the worker, then send a connect event.
|
| - m_webWorker->startWorkerContext(m_url, m_name, m_worker->executionContext()->userAgent(m_url), m_scriptLoader->script(), m_worker->executionContext()->contentSecurityPolicy()->deprecatedHeader(), static_cast<WebKit::WebContentSecurityPolicyType>(m_worker->executionContext()->contentSecurityPolicy()->deprecatedHeaderType()), m_responseAppCacheID);
|
| + m_webWorker->startWorkerContext(m_url, m_name, m_worker->executionContext()->userAgent(m_url), m_scriptLoader->script(), m_worker->executionContext()->contentSecurityPolicy()->deprecatedHeader(), static_cast<blink::WebContentSecurityPolicyType>(m_worker->executionContext()->contentSecurityPolicy()->deprecatedHeaderType()), m_responseAppCacheID);
|
| sendConnect();
|
| }
|
| }
|
| @@ -186,4 +186,4 @@ SharedWorkerRepositoryClientImpl::SharedWorkerRepositoryClientImpl(WebSharedWork
|
| {
|
| }
|
|
|
| -} // namespace WebKit
|
| +} // namespace blink
|
|
|