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

Side by Side Diff: content/browser/service_worker/service_worker_provider_host.h

Issue 2959903002: Revert of Implement dumb URLLoader{Factory} for ServiceWorker script loading (Closed)
Patch Set: pull master and rebase Created 3 years, 5 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 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 12 matching lines...) Expand all
23 #include "content/browser/service_worker/service_worker_registration.h" 23 #include "content/browser/service_worker/service_worker_registration.h"
24 #include "content/common/content_export.h" 24 #include "content/common/content_export.h"
25 #include "content/common/service_worker/service_worker_provider_host_info.h" 25 #include "content/common/service_worker/service_worker_provider_host_info.h"
26 #include "content/common/service_worker/service_worker_provider_interfaces.mojom .h" 26 #include "content/common/service_worker/service_worker_provider_interfaces.mojom .h"
27 #include "content/common/service_worker/service_worker_types.h" 27 #include "content/common/service_worker/service_worker_types.h"
28 #include "content/common/worker_url_loader_factory_provider.mojom.h" 28 #include "content/common/worker_url_loader_factory_provider.mojom.h"
29 #include "content/public/common/request_context_frame_type.h" 29 #include "content/public/common/request_context_frame_type.h"
30 #include "content/public/common/request_context_type.h" 30 #include "content/public/common/request_context_type.h"
31 #include "content/public/common/resource_type.h" 31 #include "content/public/common/resource_type.h"
32 #include "mojo/public/cpp/bindings/associated_binding.h" 32 #include "mojo/public/cpp/bindings/associated_binding.h"
33 #include "mojo/public/cpp/bindings/strong_associated_binding_set.h"
34 33
35 namespace storage { 34 namespace storage {
36 class BlobStorageContext; 35 class BlobStorageContext;
37 } 36 }
38 37
39 namespace content { 38 namespace content {
40 39
41 class MessagePort; 40 class MessagePort;
42 class ResourceRequestBodyImpl; 41 class ResourceRequestBodyImpl;
43 class ServiceWorkerContextCore; 42 class ServiceWorkerContextCore;
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 std::unordered_map<mojom::ServiceWorkerWorkerClient*, 458 std::unordered_map<mojom::ServiceWorkerWorkerClient*,
460 mojom::ServiceWorkerWorkerClientAssociatedPtr> 459 mojom::ServiceWorkerWorkerClientAssociatedPtr>
461 worker_clients_; 460 worker_clients_;
462 461
463 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost); 462 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost);
464 }; 463 };
465 464
466 } // namespace content 465 } // namespace content
467 466
468 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ 467 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698