Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: third_party/WebKit/Source/web/DedicatedWorkerMessagingProxyProviderImpl.cpp

Issue 2816403002: test all
Patch Set: fix sharedworker Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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/Settings.h"
35 #include "core/loader/WorkerFetchContext.h"
34 #include "core/workers/DedicatedWorkerMessagingProxy.h" 36 #include "core/workers/DedicatedWorkerMessagingProxy.h"
35 #include "core/workers/Worker.h" 37 #include "core/workers/Worker.h"
36 #include "core/workers/WorkerClients.h" 38 #include "core/workers/WorkerClients.h"
39 #include "platform/RuntimeEnabledFeatures.h"
40 #include "platform/loader/fetch/ResourceFetcher.h"
37 #include "platform/wtf/PtrUtil.h" 41 #include "platform/wtf/PtrUtil.h"
42 #include "public/platform/Platform.h"
38 #include "public/platform/WebContentSettingsClient.h" 43 #include "public/platform/WebContentSettingsClient.h"
39 #include "public/platform/WebString.h" 44 #include "public/platform/WebString.h"
45 #include "public/platform/WebWorkerFetchContext.h"
40 #include "public/web/WebFrameClient.h" 46 #include "public/web/WebFrameClient.h"
41 #include "public/web/WebWorkerContentSettingsClientProxy.h" 47 #include "public/web/WebWorkerContentSettingsClientProxy.h"
42 #include "web/IndexedDBClientImpl.h" 48 #include "web/IndexedDBClientImpl.h"
43 #include "web/LocalFileSystemClient.h" 49 #include "web/LocalFileSystemClient.h"
44 #include "web/WebLocalFrameImpl.h" 50 #include "web/WebLocalFrameImpl.h"
45 #include "web/WebViewImpl.h" 51 #include "web/WebViewImpl.h"
46 #include "web/WorkerContentSettingsClient.h" 52 #include "web/WorkerContentSettingsClient.h"
47 53
48 namespace blink { 54 namespace blink {
49 55
(...skipping 10 matching lines...) Expand all
60 WebLocalFrameImpl::FromFrame(document->GetFrame()); 66 WebLocalFrameImpl::FromFrame(document->GetFrame());
61 WorkerClients* worker_clients = WorkerClients::Create(); 67 WorkerClients* worker_clients = WorkerClients::Create();
62 ProvideIndexedDBClientToWorker( 68 ProvideIndexedDBClientToWorker(
63 worker_clients, IndexedDBClientImpl::Create(*worker_clients)); 69 worker_clients, IndexedDBClientImpl::Create(*worker_clients));
64 ProvideLocalFileSystemToWorker(worker_clients, 70 ProvideLocalFileSystemToWorker(worker_clients,
65 LocalFileSystemClient::Create()); 71 LocalFileSystemClient::Create());
66 ProvideContentSettingsClientToWorker( 72 ProvideContentSettingsClientToWorker(
67 worker_clients, 73 worker_clients,
68 WTF::WrapUnique( 74 WTF::WrapUnique(
69 web_frame->Client()->CreateWorkerContentSettingsClientProxy())); 75 web_frame->Client()->CreateWorkerContentSettingsClientProxy()));
76 if (RuntimeEnabledFeatures::offMainThreadFetchEnabled()) {
77 std::unique_ptr<WebWorkerFetchContext> web_worker_fetch_context =
78 WTF::WrapUnique(web_frame->Client()->CreateWorkerFetchContext());
79 DCHECK(web_worker_fetch_context);
80
81 web_worker_fetch_context->SetAppCacheHostID(
82 document->Fetcher()->Context().ApplicationCacheHostID());
83
84 web_worker_fetch_context->SetDataSaverEnabled(
85 document->GetFrame()->GetSettings()->GetDataSaverEnabled());
86 web_worker_fetch_context->SetStrictMixedContentCheckingEnabled(
87 document->GetFrame()->GetSettings()->GetStrictMixedContentChecking());
88 ProvideWorkerFetchContextToWorker(worker_clients,
89 std::move(web_worker_fetch_context));
90 }
70 // FIXME: call provideServiceWorkerContainerClientToWorker here when we 91 // FIXME: call provideServiceWorkerContainerClientToWorker here when we
71 // support ServiceWorker in dedicated workers (http://crbug.com/371690) 92 // support ServiceWorker in dedicated workers (http://crbug.com/371690)
72 return new DedicatedWorkerMessagingProxy(worker, worker_clients); 93 return new DedicatedWorkerMessagingProxy(worker, worker_clients);
73 } 94 }
74 NOTREACHED(); 95 NOTREACHED();
75 return 0; 96 return 0;
76 } 97 }
77 98
78 } // namespace blink 99 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698