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

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

Issue 2886663002: DataSaver support for off-main-thread-fetch (Closed)
Patch Set: rebase on TOT Created 3 years, 7 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"
34 #include "core/frame/WebLocalFrameBase.h" 35 #include "core/frame/WebLocalFrameBase.h"
35 #include "core/loader/WorkerFetchContext.h" 36 #include "core/loader/WorkerFetchContext.h"
36 #include "core/workers/DedicatedWorkerMessagingProxy.h" 37 #include "core/workers/DedicatedWorkerMessagingProxy.h"
37 #include "core/workers/Worker.h" 38 #include "core/workers/Worker.h"
38 #include "core/workers/WorkerClients.h" 39 #include "core/workers/WorkerClients.h"
39 #include "core/workers/WorkerContentSettingsClient.h" 40 #include "core/workers/WorkerContentSettingsClient.h"
40 #include "platform/RuntimeEnabledFeatures.h" 41 #include "platform/RuntimeEnabledFeatures.h"
41 #include "platform/wtf/PtrUtil.h" 42 #include "platform/wtf/PtrUtil.h"
42 #include "public/platform/Platform.h" 43 #include "public/platform/Platform.h"
43 #include "public/platform/WebContentSettingsClient.h" 44 #include "public/platform/WebContentSettingsClient.h"
(...skipping 24 matching lines...) Expand all
68 LocalFileSystemClient::Create()); 69 LocalFileSystemClient::Create());
69 ProvideContentSettingsClientToWorker( 70 ProvideContentSettingsClientToWorker(
70 worker_clients, 71 worker_clients,
71 WTF::WrapUnique( 72 WTF::WrapUnique(
72 web_frame->Client()->CreateWorkerContentSettingsClientProxy())); 73 web_frame->Client()->CreateWorkerContentSettingsClientProxy()));
73 if (RuntimeEnabledFeatures::offMainThreadFetchEnabled()) { 74 if (RuntimeEnabledFeatures::offMainThreadFetchEnabled()) {
74 std::unique_ptr<WebWorkerFetchContext> web_worker_fetch_context = 75 std::unique_ptr<WebWorkerFetchContext> web_worker_fetch_context =
75 web_frame->Client()->CreateWorkerFetchContext(); 76 web_frame->Client()->CreateWorkerFetchContext();
76 DCHECK(web_worker_fetch_context); 77 DCHECK(web_worker_fetch_context);
77 // TODO(horo): Set more information about the context (ex: 78 // TODO(horo): Set more information about the context (ex:
78 // DataSaverEnabled) to |web_worker_fetch_context|. 79 // AppCacheHostID) to |web_worker_fetch_context|.
80 web_worker_fetch_context->SetDataSaverEnabled(
81 document->GetFrame()->GetSettings()->GetDataSaverEnabled());
79 ProvideWorkerFetchContextToWorker(worker_clients, 82 ProvideWorkerFetchContextToWorker(worker_clients,
80 std::move(web_worker_fetch_context)); 83 std::move(web_worker_fetch_context));
81 } 84 }
82 // FIXME: call provideServiceWorkerContainerClientToWorker here when we 85 // FIXME: call provideServiceWorkerContainerClientToWorker here when we
83 // support ServiceWorker in dedicated workers (http://crbug.com/371690) 86 // support ServiceWorker in dedicated workers (http://crbug.com/371690)
84 return new DedicatedWorkerMessagingProxy(worker, worker_clients); 87 return new DedicatedWorkerMessagingProxy(worker, worker_clients);
85 } 88 }
86 NOTREACHED(); 89 NOTREACHED();
87 return 0; 90 return 0;
88 } 91 }
89 92
90 } // namespace blink 93 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/WorkerFetchContext.cpp ('k') | third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698