| 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 12 matching lines...) Expand all Loading... |
| 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" |
| 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 ResourceRequestBodyImpl; | 42 class ResourceRequestBodyImpl; |
| 42 class ServiceWorkerContextCore; | 43 class ServiceWorkerContextCore; |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 std::unordered_map<mojom::ServiceWorkerWorkerClient*, | 459 std::unordered_map<mojom::ServiceWorkerWorkerClient*, |
| 459 mojom::ServiceWorkerWorkerClientAssociatedPtr> | 460 mojom::ServiceWorkerWorkerClientAssociatedPtr> |
| 460 worker_clients_; | 461 worker_clients_; |
| 461 | 462 |
| 462 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost); | 463 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost); |
| 463 }; | 464 }; |
| 464 | 465 |
| 465 } // namespace content | 466 } // namespace content |
| 466 | 467 |
| 467 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ | 468 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ |
| OLD | NEW |