OLD | NEW |
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 11 matching lines...) Expand all Loading... |
22 #include "base/time/time.h" | 22 #include "base/time/time.h" |
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 "content/public/common/service_worker_modes.h" |
32 #include "mojo/public/cpp/bindings/associated_binding.h" | 33 #include "mojo/public/cpp/bindings/associated_binding.h" |
33 | 34 |
34 namespace storage { | 35 namespace storage { |
35 class BlobStorageContext; | 36 class BlobStorageContext; |
36 } | 37 } |
37 | 38 |
38 namespace content { | 39 namespace content { |
39 | 40 |
40 class MessagePort; | 41 class MessagePort; |
41 class ResourceRequestBody; | 42 class ResourceRequestBody; |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 std::unordered_map<mojom::ServiceWorkerWorkerClient*, | 438 std::unordered_map<mojom::ServiceWorkerWorkerClient*, |
438 mojom::ServiceWorkerWorkerClientAssociatedPtr> | 439 mojom::ServiceWorkerWorkerClientAssociatedPtr> |
439 worker_clients_; | 440 worker_clients_; |
440 | 441 |
441 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost); | 442 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost); |
442 }; | 443 }; |
443 | 444 |
444 } // namespace content | 445 } // namespace content |
445 | 446 |
446 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ | 447 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ |
OLD | NEW |