Index: Source/web/WorkerGlobalScopeProxyProviderImpl.cpp |
diff --git a/Source/web/WorkerGlobalScopeProxyProviderImpl.cpp b/Source/web/WorkerGlobalScopeProxyProviderImpl.cpp |
index 373ba3c93fd6917161a628a20c3177409b9407e8..f2afbe6d00c9c010fe0dac12616399c7a8c6a42c 100644 |
--- a/Source/web/WorkerGlobalScopeProxyProviderImpl.cpp |
+++ b/Source/web/WorkerGlobalScopeProxyProviderImpl.cpp |
@@ -42,7 +42,6 @@ |
#include "public/web/WebFrameClient.h" |
#include "public/web/WebPermissionClient.h" |
#include "public/web/WebWorkerPermissionClientProxy.h" |
-#include "web/DatabaseClientImpl.h" |
#include "web/LocalFileSystemClient.h" |
#include "web/WebLocalFrameImpl.h" |
#include "web/WebViewImpl.h" |
@@ -57,7 +56,6 @@ WorkerGlobalScopeProxy* WorkerGlobalScopeProxyProviderImpl::createWorkerGlobalSc |
WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); |
OwnPtrWillBeRawPtr<WorkerClients> workerClients = WorkerClients::create(); |
provideLocalFileSystemToWorker(workerClients.get(), LocalFileSystemClient::create()); |
- provideDatabaseClientToWorker(workerClients.get(), DatabaseClientImpl::create()); |
providePermissionClientToWorker(workerClients.get(), adoptPtr(webFrame->client()->createWorkerPermissionClientProxy(webFrame))); |
provideServiceWorkerContainerClientToWorker(workerClients.get(), adoptPtr(webFrame->client()->createServiceWorkerProvider(webFrame))); |
return new WorkerMessagingProxy(worker, workerClients.release()); |