| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "web/DedicatedWorkerMessagingProxyProviderImpl.h" | 31 #include "web/DedicatedWorkerMessagingProxyProviderImpl.h" |
| 32 | 32 |
| 33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
| 34 #include "core/frame/WebLocalFrameBase.h" |
| 34 #include "core/loader/WorkerFetchContext.h" | 35 #include "core/loader/WorkerFetchContext.h" |
| 35 #include "core/workers/DedicatedWorkerMessagingProxy.h" | 36 #include "core/workers/DedicatedWorkerMessagingProxy.h" |
| 36 #include "core/workers/Worker.h" | 37 #include "core/workers/Worker.h" |
| 37 #include "core/workers/WorkerClients.h" | 38 #include "core/workers/WorkerClients.h" |
| 38 #include "core/workers/WorkerContentSettingsClient.h" | 39 #include "core/workers/WorkerContentSettingsClient.h" |
| 39 #include "platform/RuntimeEnabledFeatures.h" | 40 #include "platform/RuntimeEnabledFeatures.h" |
| 40 #include "platform/wtf/PtrUtil.h" | 41 #include "platform/wtf/PtrUtil.h" |
| 41 #include "public/platform/Platform.h" | 42 #include "public/platform/Platform.h" |
| 42 #include "public/platform/WebContentSettingsClient.h" | 43 #include "public/platform/WebContentSettingsClient.h" |
| 43 #include "public/platform/WebString.h" | 44 #include "public/platform/WebString.h" |
| 44 #include "public/platform/WebWorkerFetchContext.h" | 45 #include "public/platform/WebWorkerFetchContext.h" |
| 45 #include "public/web/WebFrameClient.h" | 46 #include "public/web/WebFrameClient.h" |
| 46 #include "public/web/WebWorkerContentSettingsClientProxy.h" | 47 #include "public/web/WebWorkerContentSettingsClientProxy.h" |
| 47 #include "web/IndexedDBClientImpl.h" | 48 #include "web/IndexedDBClientImpl.h" |
| 48 #include "web/LocalFileSystemClient.h" | 49 #include "web/LocalFileSystemClient.h" |
| 49 #include "web/WebLocalFrameImpl.h" | |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 DedicatedWorkerMessagingProxyProviderImpl:: | 53 DedicatedWorkerMessagingProxyProviderImpl:: |
| 54 DedicatedWorkerMessagingProxyProviderImpl(Page& page) | 54 DedicatedWorkerMessagingProxyProviderImpl(Page& page) |
| 55 : DedicatedWorkerMessagingProxyProvider(page) {} | 55 : DedicatedWorkerMessagingProxyProvider(page) {} |
| 56 | 56 |
| 57 InProcessWorkerMessagingProxy* | 57 InProcessWorkerMessagingProxy* |
| 58 DedicatedWorkerMessagingProxyProviderImpl::CreateWorkerMessagingProxy( | 58 DedicatedWorkerMessagingProxyProviderImpl::CreateWorkerMessagingProxy( |
| 59 Worker* worker) { | 59 Worker* worker) { |
| 60 if (worker->GetExecutionContext()->IsDocument()) { | 60 if (worker->GetExecutionContext()->IsDocument()) { |
| 61 Document* document = ToDocument(worker->GetExecutionContext()); | 61 Document* document = ToDocument(worker->GetExecutionContext()); |
| 62 WebLocalFrameImpl* web_frame = | 62 WebLocalFrameBase* web_frame = |
| 63 WebLocalFrameImpl::FromFrame(document->GetFrame()); | 63 WebLocalFrameBase::FromFrame(document->GetFrame()); |
| 64 WorkerClients* worker_clients = WorkerClients::Create(); | 64 WorkerClients* worker_clients = WorkerClients::Create(); |
| 65 ProvideIndexedDBClientToWorker( | 65 ProvideIndexedDBClientToWorker( |
| 66 worker_clients, IndexedDBClientImpl::Create(*worker_clients)); | 66 worker_clients, IndexedDBClientImpl::Create(*worker_clients)); |
| 67 ProvideLocalFileSystemToWorker(worker_clients, | 67 ProvideLocalFileSystemToWorker(worker_clients, |
| 68 LocalFileSystemClient::Create()); | 68 LocalFileSystemClient::Create()); |
| 69 ProvideContentSettingsClientToWorker( | 69 ProvideContentSettingsClientToWorker( |
| 70 worker_clients, | 70 worker_clients, |
| 71 WTF::WrapUnique( | 71 WTF::WrapUnique( |
| 72 web_frame->Client()->CreateWorkerContentSettingsClientProxy())); | 72 web_frame->Client()->CreateWorkerContentSettingsClientProxy())); |
| 73 if (RuntimeEnabledFeatures::offMainThreadFetchEnabled()) { | 73 if (RuntimeEnabledFeatures::offMainThreadFetchEnabled()) { |
| 74 std::unique_ptr<WebWorkerFetchContext> web_worker_fetch_context = | 74 std::unique_ptr<WebWorkerFetchContext> web_worker_fetch_context = |
| 75 web_frame->Client()->CreateWorkerFetchContext(); | 75 web_frame->Client()->CreateWorkerFetchContext(); |
| 76 DCHECK(web_worker_fetch_context); | 76 DCHECK(web_worker_fetch_context); |
| 77 // TODO(horo): Set more information about the context (ex: | 77 // TODO(horo): Set more information about the context (ex: |
| 78 // DataSaverEnabled) to |web_worker_fetch_context|. | 78 // DataSaverEnabled) to |web_worker_fetch_context|. |
| 79 ProvideWorkerFetchContextToWorker(worker_clients, | 79 ProvideWorkerFetchContextToWorker(worker_clients, |
| 80 std::move(web_worker_fetch_context)); | 80 std::move(web_worker_fetch_context)); |
| 81 } | 81 } |
| 82 // FIXME: call provideServiceWorkerContainerClientToWorker here when we | 82 // FIXME: call provideServiceWorkerContainerClientToWorker here when we |
| 83 // support ServiceWorker in dedicated workers (http://crbug.com/371690) | 83 // support ServiceWorker in dedicated workers (http://crbug.com/371690) |
| 84 return new DedicatedWorkerMessagingProxy(worker, worker_clients); | 84 return new DedicatedWorkerMessagingProxy(worker, worker_clients); |
| 85 } | 85 } |
| 86 NOTREACHED(); | 86 NOTREACHED(); |
| 87 return 0; | 87 return 0; |
| 88 } | 88 } |
| 89 | 89 |
| 90 } // namespace blink | 90 } // namespace blink |
| OLD | NEW |