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 #include "content/browser/service_worker/service_worker_request_handler.h" | 5 #include "content/browser/service_worker/service_worker_request_handler.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "content/browser/loader/url_loader_request_handler.h" | 12 #include "content/browser/loader/url_loader_request_handler.h" |
13 #include "content/browser/service_worker/service_worker_context_core.h" | 13 #include "content/browser/service_worker/service_worker_context_core.h" |
14 #include "content/browser/service_worker/service_worker_context_wrapper.h" | 14 #include "content/browser/service_worker/service_worker_context_wrapper.h" |
15 #include "content/browser/service_worker/service_worker_navigation_handle_core.h
" | 15 #include "content/browser/service_worker/service_worker_navigation_handle_core.h
" |
16 #include "content/browser/service_worker/service_worker_provider_host.h" | 16 #include "content/browser/service_worker/service_worker_provider_host.h" |
17 #include "content/browser/service_worker/service_worker_registration.h" | 17 #include "content/browser/service_worker/service_worker_registration.h" |
18 #include "content/browser/service_worker/service_worker_url_request_job.h" | 18 #include "content/browser/service_worker/service_worker_url_request_job.h" |
19 #include "content/common/service_worker/service_worker_types.h" | 19 #include "content/common/service_worker/service_worker_types.h" |
20 #include "content/common/service_worker/service_worker_utils.h" | 20 #include "content/common/service_worker/service_worker_utils.h" |
21 #include "content/public/browser/resource_context.h" | 21 #include "content/public/browser/resource_context.h" |
22 #include "content/public/common/browser_side_navigation_policy.h" | 22 #include "content/public/common/browser_side_navigation_policy.h" |
23 #include "content/public/common/child_process_host.h" | 23 #include "content/public/common/child_process_host.h" |
24 #include "content/public/common/content_switches.h" | 24 #include "content/public/common/content_switches.h" |
25 #include "content/public/common/origin_util.h" | 25 #include "content/public/common/origin_util.h" |
26 #include "content/public/common/resource_request_body.h" | 26 #include "content/public/common/resource_request_body.h" |
| 27 #include "content/public/common/service_worker_modes.h" |
27 #include "ipc/ipc_message.h" | 28 #include "ipc/ipc_message.h" |
28 #include "net/base/url_util.h" | 29 #include "net/base/url_util.h" |
29 #include "net/url_request/url_request.h" | 30 #include "net/url_request/url_request.h" |
30 #include "net/url_request/url_request_interceptor.h" | 31 #include "net/url_request/url_request_interceptor.h" |
31 #include "storage/browser/blob/blob_storage_context.h" | 32 #include "storage/browser/blob/blob_storage_context.h" |
32 | 33 |
33 namespace content { | 34 namespace content { |
34 | 35 |
35 namespace { | 36 namespace { |
36 | 37 |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 ResourceType resource_type) | 296 ResourceType resource_type) |
296 : context_(context), | 297 : context_(context), |
297 provider_host_(provider_host), | 298 provider_host_(provider_host), |
298 blob_storage_context_(blob_storage_context), | 299 blob_storage_context_(blob_storage_context), |
299 resource_type_(resource_type), | 300 resource_type_(resource_type), |
300 old_process_id_(0), | 301 old_process_id_(0), |
301 old_provider_id_(kInvalidServiceWorkerProviderId) { | 302 old_provider_id_(kInvalidServiceWorkerProviderId) { |
302 } | 303 } |
303 | 304 |
304 } // namespace content | 305 } // namespace content |
OLD | NEW |