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

Side by Side Diff: content/renderer/service_worker/service_worker_fetch_context_impl.h

Issue 2804843005: Implement the infrastructure of creating WorkerFetchContext in worker global scope. (Closed)
Patch Set: s/WebScheduler.h/web_scheduler.h/ 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
(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 std::unique_ptr<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_;
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698