OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/storage_partition_impl_map.h" | 5 #include "content/browser/storage_partition_impl_map.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/files/file_enumerator.h" | 12 #include "base/files/file_enumerator.h" |
13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/files/file_util.h" | 14 #include "base/files/file_util.h" |
15 #include "base/location.h" | 15 #include "base/location.h" |
16 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "base/single_thread_task_runner.h" | 17 #include "base/single_thread_task_runner.h" |
18 #include "base/stl_util.h" | 18 #include "base/stl_util.h" |
19 #include "base/strings/string_number_conversions.h" | 19 #include "base/strings/string_number_conversions.h" |
20 #include "base/strings/string_util.h" | 20 #include "base/strings/string_util.h" |
21 #include "base/strings/stringprintf.h" | 21 #include "base/strings/stringprintf.h" |
22 #include "base/thread_task_runner_handle.h" | |
23 #include "base/threading/sequenced_worker_pool.h" | 22 #include "base/threading/sequenced_worker_pool.h" |
| 23 #include "base/threading/thread_task_runner_handle.h" |
24 #include "build/build_config.h" | 24 #include "build/build_config.h" |
25 #include "content/browser/appcache/appcache_interceptor.h" | 25 #include "content/browser/appcache/appcache_interceptor.h" |
26 #include "content/browser/appcache/chrome_appcache_service.h" | 26 #include "content/browser/appcache/chrome_appcache_service.h" |
27 #include "content/browser/fileapi/browser_file_system_helper.h" | 27 #include "content/browser/fileapi/browser_file_system_helper.h" |
28 #include "content/browser/fileapi/chrome_blob_storage_context.h" | 28 #include "content/browser/fileapi/chrome_blob_storage_context.h" |
29 #include "content/browser/loader/resource_request_info_impl.h" | 29 #include "content/browser/loader/resource_request_info_impl.h" |
30 #include "content/browser/resource_context_impl.h" | 30 #include "content/browser/resource_context_impl.h" |
31 #include "content/browser/service_worker/foreign_fetch_request_handler.h" | 31 #include "content/browser/service_worker/foreign_fetch_request_handler.h" |
32 #include "content/browser/service_worker/service_worker_request_handler.h" | 32 #include "content/browser/service_worker/service_worker_request_handler.h" |
33 #include "content/browser/storage_partition_impl.h" | 33 #include "content/browser/storage_partition_impl.h" |
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
609 | 609 |
610 // We do not call InitializeURLRequestContext() for media contexts because, | 610 // We do not call InitializeURLRequestContext() for media contexts because, |
611 // other than the HTTP cache, the media contexts share the same backing | 611 // other than the HTTP cache, the media contexts share the same backing |
612 // objects as their associated "normal" request context. Thus, the previous | 612 // objects as their associated "normal" request context. Thus, the previous |
613 // call serves to initialize the media request context for this storage | 613 // call serves to initialize the media request context for this storage |
614 // partition as well. | 614 // partition as well. |
615 } | 615 } |
616 } | 616 } |
617 | 617 |
618 } // namespace content | 618 } // namespace content |
OLD | NEW |