| 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 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
| 34 #include "core/frame/Settings.h" | 34 #include "core/frame/Settings.h" |
| 35 #include "core/frame/WebLocalFrameBase.h" | 35 #include "core/frame/WebLocalFrameBase.h" |
| 36 #include "core/loader/WorkerFetchContext.h" | 36 #include "core/loader/WorkerFetchContext.h" |
| 37 #include "core/workers/DedicatedWorkerMessagingProxy.h" | 37 #include "core/workers/DedicatedWorkerMessagingProxy.h" |
| 38 #include "core/workers/Worker.h" | 38 #include "core/workers/Worker.h" |
| 39 #include "core/workers/WorkerClients.h" | 39 #include "core/workers/WorkerClients.h" |
| 40 #include "core/workers/WorkerContentSettingsClient.h" | 40 #include "core/workers/WorkerContentSettingsClient.h" |
| 41 #include "platform/RuntimeEnabledFeatures.h" | 41 #include "platform/RuntimeEnabledFeatures.h" |
| 42 #include "platform/loader/fetch/ResourceFetcher.h" |
| 42 #include "platform/wtf/PtrUtil.h" | 43 #include "platform/wtf/PtrUtil.h" |
| 43 #include "public/platform/Platform.h" | 44 #include "public/platform/Platform.h" |
| 44 #include "public/platform/WebContentSettingsClient.h" | 45 #include "public/platform/WebContentSettingsClient.h" |
| 45 #include "public/platform/WebString.h" | 46 #include "public/platform/WebString.h" |
| 46 #include "public/platform/WebWorkerFetchContext.h" | 47 #include "public/platform/WebWorkerFetchContext.h" |
| 47 #include "public/web/WebFrameClient.h" | 48 #include "public/web/WebFrameClient.h" |
| 48 #include "public/web/WebWorkerContentSettingsClientProxy.h" | 49 #include "public/web/WebWorkerContentSettingsClientProxy.h" |
| 49 #include "web/IndexedDBClientImpl.h" | 50 #include "web/IndexedDBClientImpl.h" |
| 50 #include "web/LocalFileSystemClient.h" | 51 #include "web/LocalFileSystemClient.h" |
| 51 | 52 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 68 ProvideLocalFileSystemToWorker(worker_clients, | 69 ProvideLocalFileSystemToWorker(worker_clients, |
| 69 LocalFileSystemClient::Create()); | 70 LocalFileSystemClient::Create()); |
| 70 ProvideContentSettingsClientToWorker( | 71 ProvideContentSettingsClientToWorker( |
| 71 worker_clients, | 72 worker_clients, |
| 72 WTF::WrapUnique( | 73 WTF::WrapUnique( |
| 73 web_frame->Client()->CreateWorkerContentSettingsClientProxy())); | 74 web_frame->Client()->CreateWorkerContentSettingsClientProxy())); |
| 74 if (RuntimeEnabledFeatures::offMainThreadFetchEnabled()) { | 75 if (RuntimeEnabledFeatures::offMainThreadFetchEnabled()) { |
| 75 std::unique_ptr<WebWorkerFetchContext> web_worker_fetch_context = | 76 std::unique_ptr<WebWorkerFetchContext> web_worker_fetch_context = |
| 76 web_frame->Client()->CreateWorkerFetchContext(); | 77 web_frame->Client()->CreateWorkerFetchContext(); |
| 77 DCHECK(web_worker_fetch_context); | 78 DCHECK(web_worker_fetch_context); |
| 78 // TODO(horo): Set more information about the context (ex: | 79 web_worker_fetch_context->SetAppCacheHostID( |
| 79 // AppCacheHostID) to |web_worker_fetch_context|. | 80 document->Fetcher()->Context().ApplicationCacheHostID()); |
| 80 web_worker_fetch_context->SetDataSaverEnabled( | 81 web_worker_fetch_context->SetDataSaverEnabled( |
| 81 document->GetFrame()->GetSettings()->GetDataSaverEnabled()); | 82 document->GetFrame()->GetSettings()->GetDataSaverEnabled()); |
| 82 ProvideWorkerFetchContextToWorker(worker_clients, | 83 ProvideWorkerFetchContextToWorker(worker_clients, |
| 83 std::move(web_worker_fetch_context)); | 84 std::move(web_worker_fetch_context)); |
| 84 } | 85 } |
| 85 // FIXME: call provideServiceWorkerContainerClientToWorker here when we | 86 // FIXME: call provideServiceWorkerContainerClientToWorker here when we |
| 86 // support ServiceWorker in dedicated workers (http://crbug.com/371690) | 87 // support ServiceWorker in dedicated workers (http://crbug.com/371690) |
| 87 return new DedicatedWorkerMessagingProxy(worker, worker_clients); | 88 return new DedicatedWorkerMessagingProxy(worker, worker_clients); |
| 88 } | 89 } |
| 89 NOTREACHED(); | 90 NOTREACHED(); |
| 90 return 0; | 91 return 0; |
| 91 } | 92 } |
| 92 | 93 |
| 93 } // namespace blink | 94 } // namespace blink |
| OLD | NEW |