Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_FETCH_CONTEXT_IMPL_H_ | |
| 6 #define CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_FETCH_CONTEXT_IMPL_H_ | |
| 7 | |
| 8 #include "content/common/worker_url_loader_factory_provider.mojom.h" | |
| 9 #include "third_party/WebKit/public/platform/WebWorkerFetchContext.h" | |
| 10 | |
| 11 namespace base { | |
| 12 class SingleThreadTaskRunner; | |
| 13 } // namespace base | |
| 14 | |
| 15 namespace content { | |
| 16 class ResourceDispatcher; | |
| 17 | |
| 18 class ServiceWorkerFetchContextImpl : public blink::WebWorkerFetchContext { | |
| 19 public: | |
| 20 ServiceWorkerFetchContextImpl( | |
| 21 mojom::WorkerURLLoaderFactoryProviderPtrInfo provider_info, | |
| 22 int service_worker_provider_id); | |
| 23 ~ServiceWorkerFetchContextImpl() override; | |
| 24 | |
| 25 // blink::WebWorkerFetchContext implementation: | |
| 26 void InitializeOnWorkerThread(base::SingleThreadTaskRunner*) override; | |
| 27 blink::WebURLLoader* CreateURLLoader() override; | |
| 28 void WillSendRequest(blink::WebURLRequest&) override; | |
| 29 bool IsControlledByServiceWorker() const override; | |
| 30 | |
| 31 private: | |
| 32 mojom::WorkerURLLoaderFactoryProviderPtrInfo provider_info_; | |
| 33 const int service_worker_provider_id_; | |
| 34 | |
| 35 // Initialized on the worker thread when InitializeOnWorkerThread() is called. | |
| 36 std::unique_ptr<ResourceDispatcher> resource_dispatcher_; | |
|
yhirano
2017/04/20 04:26:59
ResourceDispatcher::main_thread_task_runner_ becom
horo
2017/04/20 08:35:43
Done.
| |
| 37 mojom::WorkerURLLoaderFactoryProviderPtr provider_; | |
| 38 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_; | |
| 39 }; | |
| 40 | |
| 41 } // namespace content | |
| 42 | |
| 43 #endif // CONTENT_RENDERER_SERVICE_WORKER_SERVICE_WORKER_FETCH_CONTEXT_IMPL_H_ | |
| OLD | NEW |