OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_REQUEST_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ |
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ | 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 class URLRequestInterceptor; | 25 class URLRequestInterceptor; |
26 } | 26 } |
27 | 27 |
28 namespace storage { | 28 namespace storage { |
29 class BlobStorageContext; | 29 class BlobStorageContext; |
30 } | 30 } |
31 | 31 |
32 namespace content { | 32 namespace content { |
33 | 33 |
34 class ResourceContext; | 34 class ResourceContext; |
35 class ResourceMessageFilter; | |
36 class ResourceRequestBodyImpl; | 35 class ResourceRequestBodyImpl; |
37 class ServiceWorkerContextCore; | 36 class ServiceWorkerContextCore; |
38 class ServiceWorkerContextWrapper; | 37 class ServiceWorkerContextWrapper; |
39 class ServiceWorkerNavigationHandleCore; | 38 class ServiceWorkerNavigationHandleCore; |
40 class ServiceWorkerProviderHost; | 39 class ServiceWorkerProviderHost; |
41 | 40 |
42 // Abstract base class for routing network requests to ServiceWorkers. | 41 // Abstract base class for routing network requests to ServiceWorkers. |
43 // Created one per URLRequest and attached to each request. | 42 // Created one per URLRequest and attached to each request. |
44 class CONTENT_EXPORT ServiceWorkerRequestHandler | 43 class CONTENT_EXPORT ServiceWorkerRequestHandler |
45 : public base::SupportsUserData::Data { | 44 : public base::SupportsUserData::Data { |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 std::unique_ptr<ServiceWorkerProviderHost> host_for_cross_site_transfer_; | 133 std::unique_ptr<ServiceWorkerProviderHost> host_for_cross_site_transfer_; |
135 int old_process_id_; | 134 int old_process_id_; |
136 int old_provider_id_; | 135 int old_provider_id_; |
137 | 136 |
138 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRequestHandler); | 137 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRequestHandler); |
139 }; | 138 }; |
140 | 139 |
141 } // namespace content | 140 } // namespace content |
142 | 141 |
143 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ | 142 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ |
OLD | NEW |