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 <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/feature_list.h" | 12 #include "base/feature_list.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/memory/scoped_vector.h" | 17 #include "base/memory/scoped_vector.h" |
18 #include "base/memory/shared_memory.h" | 18 #include "base/memory/shared_memory.h" |
19 #include "base/pickle.h" | 19 #include "base/pickle.h" |
20 #include "base/run_loop.h" | 20 #include "base/run_loop.h" |
21 #include "base/single_thread_task_runner.h" | 21 #include "base/single_thread_task_runner.h" |
22 #include "base/strings/string_number_conversions.h" | 22 #include "base/strings/string_number_conversions.h" |
23 #include "base/strings/string_split.h" | 23 #include "base/strings/string_split.h" |
24 #include "base/thread_task_runner_handle.h" | 24 #include "base/threading/thread_task_runner_handle.h" |
25 #include "content/browser/browser_thread_impl.h" | 25 #include "content/browser/browser_thread_impl.h" |
26 #include "content/browser/cert_store_impl.h" | 26 #include "content/browser/cert_store_impl.h" |
27 #include "content/browser/child_process_security_policy_impl.h" | 27 #include "content/browser/child_process_security_policy_impl.h" |
28 #include "content/browser/frame_host/navigation_request_info.h" | 28 #include "content/browser/frame_host/navigation_request_info.h" |
29 #include "content/browser/loader/cross_site_resource_handler.h" | 29 #include "content/browser/loader/cross_site_resource_handler.h" |
30 #include "content/browser/loader/detachable_resource_handler.h" | 30 #include "content/browser/loader/detachable_resource_handler.h" |
31 #include "content/browser/loader/navigation_url_loader.h" | 31 #include "content/browser/loader/navigation_url_loader.h" |
32 #include "content/browser/loader/resource_dispatcher_host_impl.h" | 32 #include "content/browser/loader/resource_dispatcher_host_impl.h" |
33 #include "content/browser/loader/resource_loader.h" | 33 #include "content/browser/loader/resource_loader.h" |
34 #include "content/browser/loader/resource_message_filter.h" | 34 #include "content/browser/loader/resource_message_filter.h" |
(...skipping 3869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3904 return nullptr; | 3904 return nullptr; |
3905 } | 3905 } |
3906 | 3906 |
3907 INSTANTIATE_TEST_CASE_P( | 3907 INSTANTIATE_TEST_CASE_P( |
3908 ResourceDispatcherHostTests, | 3908 ResourceDispatcherHostTests, |
3909 ResourceDispatcherHostTest, | 3909 ResourceDispatcherHostTest, |
3910 testing::Values(TestConfig::kDefault, | 3910 testing::Values(TestConfig::kDefault, |
3911 TestConfig::kOptimizeIPCForSmallResourceEnabled)); | 3911 TestConfig::kOptimizeIPCForSmallResourceEnabled)); |
3912 | 3912 |
3913 } // namespace content | 3913 } // namespace content |
OLD | NEW |