| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_FETCH_CONTEXT_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_FETCH_CONTEXT_IMPL_H_ |
| 6 #define CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_FETCH_CONTEXT_IMPL_H_ | 6 #define CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_FETCH_CONTEXT_IMPL_H_ |
| 7 | 7 |
| 8 #include "content/common/worker_url_loader_factory_provider.mojom.h" | 8 #include "content/common/worker_url_loader_factory_provider.mojom.h" |
| 9 #include "third_party/WebKit/public/platform/WebWorkerFetchContext.h" | 9 #include "third_party/WebKit/public/platform/WebWorkerFetchContext.h" |
| 10 #include "url/gurl.h" |
| 10 | 11 |
| 11 namespace base { | 12 namespace base { |
| 12 class SingleThreadTaskRunner; | 13 class SingleThreadTaskRunner; |
| 13 } // namespace base | 14 } // namespace base |
| 14 | 15 |
| 15 namespace content { | 16 namespace content { |
| 16 class ResourceDispatcher; | 17 class ResourceDispatcher; |
| 17 | 18 |
| 18 class ServiceWorkerFetchContextImpl : public blink::WebWorkerFetchContext { | 19 class ServiceWorkerFetchContextImpl : public blink::WebWorkerFetchContext { |
| 19 public: | 20 public: |
| 20 ServiceWorkerFetchContextImpl( | 21 ServiceWorkerFetchContextImpl( |
| 22 const GURL& worker_script_url, |
| 21 mojom::WorkerURLLoaderFactoryProviderPtrInfo provider_info, | 23 mojom::WorkerURLLoaderFactoryProviderPtrInfo provider_info, |
| 22 int service_worker_provider_id); | 24 int service_worker_provider_id); |
| 23 ~ServiceWorkerFetchContextImpl() override; | 25 ~ServiceWorkerFetchContextImpl() override; |
| 24 | 26 |
| 25 // blink::WebWorkerFetchContext implementation: | 27 // blink::WebWorkerFetchContext implementation: |
| 26 void InitializeOnWorkerThread(base::SingleThreadTaskRunner*) override; | 28 void InitializeOnWorkerThread(base::SingleThreadTaskRunner*) override; |
| 27 std::unique_ptr<blink::WebURLLoader> CreateURLLoader() override; | 29 std::unique_ptr<blink::WebURLLoader> CreateURLLoader() override; |
| 28 void WillSendRequest(blink::WebURLRequest&) override; | 30 void WillSendRequest(blink::WebURLRequest&) override; |
| 29 bool IsControlledByServiceWorker() const override; | 31 bool IsControlledByServiceWorker() const override; |
| 30 void SetDataSaverEnabled(bool enabled) override; | 32 void SetDataSaverEnabled(bool enabled) override; |
| 31 bool IsDataSaverEnabled() const override; | 33 bool IsDataSaverEnabled() const override; |
| 34 blink::WebURL FirstPartyForCookies() const override; |
| 32 | 35 |
| 33 private: | 36 private: |
| 37 const GURL worker_script_url_; |
| 34 mojom::WorkerURLLoaderFactoryProviderPtrInfo provider_info_; | 38 mojom::WorkerURLLoaderFactoryProviderPtrInfo provider_info_; |
| 35 const int service_worker_provider_id_; | 39 const int service_worker_provider_id_; |
| 36 | 40 |
| 37 // Initialized on the worker thread when InitializeOnWorkerThread() is called. | 41 // Initialized on the worker thread when InitializeOnWorkerThread() is called. |
| 38 std::unique_ptr<ResourceDispatcher> resource_dispatcher_; | 42 std::unique_ptr<ResourceDispatcher> resource_dispatcher_; |
| 39 mojom::WorkerURLLoaderFactoryProviderPtr provider_; | 43 mojom::WorkerURLLoaderFactoryProviderPtr provider_; |
| 40 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; | 44 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; |
| 41 | 45 |
| 42 bool is_data_saver_enabled_ = false; | 46 bool is_data_saver_enabled_ = false; |
| 43 }; | 47 }; |
| 44 | 48 |
| 45 } // namespace content | 49 } // namespace content |
| 46 | 50 |
| 47 #endif // CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_FETCH_CONTEXT_IMPL_H_ | 51 #endif // CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_FETCH_CONTEXT_IMPL_H_ |
| OLD | NEW |