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

Side by Side Diff: content/renderer/service_worker/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, 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
(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_WORKER_FETCH_CONTEXT_IMPL_H_
6 #define CONTENT_RENDERER_SERVICE_WORKER_WORKER_FETCH_CONTEXT_IMPL_H_
7
8 #include "content/common/service_worker/service_worker_types.h"
9 #include "content/common/worker_url_loader_factory_provider.mojom.h"
10 #include "mojo/public/cpp/bindings/associated_binding.h"
11 #include "third_party/WebKit/public/platform/WebWorkerFetchContext.h"
12
13 namespace base {
14 class SingleThreadTaskRunner;
15 } // namespace base
16
17 namespace content {
18
19 class ResourceDispatcher;
20
21 class WorkerFetchContextImpl : public blink::WebWorkerFetchContext,
22 public mojom::ServiceWorkerWorkerClient {
23 public:
24 explicit WorkerFetchContextImpl(
25 mojom::WorkerURLLoaderFactoryProviderPtrInfo provider_info);
26 ~WorkerFetchContextImpl() override;
27
28 // blink::WebWorkerFetchContext implementation:
29 void InitializeOnWorkerThread(base::SingleThreadTaskRunner*) override;
30 std::unique_ptr<blink::WebURLLoader> CreateURLLoader() override;
31 void WillSendRequest(blink::WebURLRequest&) override;
32 bool IsControlledByServiceWorker() const override;
33
34 // mojom::ServiceWorkerWorkerClient implementation:
35 void SetControllerServiceWorker(int64_t controller_version_id) override;
36
37 // Sets the service worker status of the parent frame.
38 void set_service_worker_provider_id(int id);
39 void set_is_controlled_by_service_worker(bool flag);
40
41 private:
42 mojom::WorkerURLLoaderFactoryProviderPtrInfo provider_info_;
43 int service_worker_provider_id_ = kInvalidServiceWorkerProviderId;
44 bool is_controlled_by_service_worker_ = false;
45
46 // Initialized on the worker thread when InitializeOnWorkerThread() is called.
47 std::unique_ptr<ResourceDispatcher> resource_dispatcher_;
48 std::unique_ptr<mojo::AssociatedBinding<mojom::ServiceWorkerWorkerClient>>
49 binding_;
50 mojom::WorkerURLLoaderFactoryProviderPtr provider_;
51 mojom::URLLoaderFactoryAssociatedPtr url_loader_factory_;
52
53 // Updated when mojom::ServiceWorkerWorkerClient::SetControllerServiceWorker()
54 // is called from the browser process via mojo IPC.
55 int controller_version_id_ = kInvalidServiceWorkerVersionId;
56 };
57
58 } // namespace content
59
60 #endif // CONTENT_RENDERER_SERVICE_WORKER_WORKER_FETCH_CONTEXT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698