Index: third_party/WebKit/Source/web/WebViewImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp |
index 358c045533e74111a3bb3a10c57126db939e78cf..c72781a90c4bdaac37326d3a9b65755e552a3310 100644 |
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp |
@@ -155,6 +155,7 @@ |
#include "web/ContextFeaturesClientImpl.h" |
#include "web/ContextMenuAllowedScope.h" |
#include "web/DatabaseClientImpl.h" |
+#include "web/DedicatedWorkerGlobalScopeProxyProviderImpl.h" |
#include "web/DevToolsEmulator.h" |
#include "web/FullscreenController.h" |
#include "web/InspectorOverlay.h" |
@@ -174,7 +175,6 @@ |
#include "web/WebPluginContainerImpl.h" |
#include "web/WebRemoteFrameImpl.h" |
#include "web/WebSettingsImpl.h" |
-#include "web/WorkerGlobalScopeProxyProviderImpl.h" |
#include "wtf/CurrentTime.h" |
#include "wtf/RefPtr.h" |
#include "wtf/TemporaryChange.h" |
@@ -459,7 +459,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client) |
provideStorageQuotaClientTo(*m_page, StorageQuotaClientImpl::create()); |
m_page->setValidationMessageClient(ValidationMessageClientImpl::create(*this)); |
- provideWorkerGlobalScopeProxyProviderTo(*m_page, WorkerGlobalScopeProxyProviderImpl::create()); |
+ provideDedicatedWorkerGlobalScopeProxyProviderTo(*m_page, DedicatedWorkerGlobalScopeProxyProviderImpl::create()); |
StorageNamespaceController::provideStorageNamespaceTo(*m_page, &m_storageClientImpl); |
if (m_client) { |