OLD | NEW |
1 # The core loading code in this directory is being transitioned into a separate | 1 # The core loading code in this directory is being transitioned into a separate |
2 # Mojo networking service. See http://crbug.com/598073. The first stage is to | 2 # Mojo networking service. See http://crbug.com/598073. The first stage is to |
3 # decouple the code that will be moved from the rest of content. These rules | 3 # decouple the code that will be moved from the rest of content. These rules |
4 # help ensure that we don't add more includes, and can progressively reduce the | 4 # help ensure that we don't add more includes, and can progressively reduce the |
5 # code's dependencies. | 5 # code's dependencies. |
6 # | 6 # |
7 # For each file, the first section shows includes that are allowed (i.e. because | 7 # For each file, the first section shows includes that are allowed (i.e. because |
8 # they are for files that will be moving as well). The second section, separated | 8 # they are for files that will be moving as well). The second section, separated |
9 # by a comment, lists files that we will have to decouple. | 9 # by a comment, lists files that we will have to decouple. |
10 specific_include_rules = { | 10 specific_include_rules = { |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 "+content/browser/bad_message.h", | 161 "+content/browser/bad_message.h", |
162 "+content/browser/blob_storage/chrome_blob_storage_context.h", | 162 "+content/browser/blob_storage/chrome_blob_storage_context.h", |
163 "+content/browser/child_process_security_policy_impl.h", | 163 "+content/browser/child_process_security_policy_impl.h", |
164 "+content/browser/download/save_types.h", | 164 "+content/browser/download/save_types.h", |
165 "+content/browser/frame_host/frame_tree.h", | 165 "+content/browser/frame_host/frame_tree.h", |
166 "+content/browser/frame_host/navigation_handle_impl.h", | 166 "+content/browser/frame_host/navigation_handle_impl.h", |
167 "+content/browser/frame_host/navigation_request_info.h", | 167 "+content/browser/frame_host/navigation_request_info.h", |
168 "+content/browser/frame_host/navigator.h", | 168 "+content/browser/frame_host/navigator.h", |
169 "+content/browser/loader/cross_site_resource_handler.h", | 169 "+content/browser/loader/cross_site_resource_handler.h", |
170 "+content/browser/loader/detachable_resource_handler.h", | 170 "+content/browser/loader/detachable_resource_handler.h", |
171 "+content/browser/loader/mime_type_resource_handler.h", | 171 "+content/browser/loader/intercepting_resource_handler.h", |
| 172 "+content/browser/loader/mime_sniffing_resource_handler.h", |
172 "+content/browser/loader/navigation_resource_handler.h", | 173 "+content/browser/loader/navigation_resource_handler.h", |
173 "+content/browser/loader/navigation_resource_throttle.h", | 174 "+content/browser/loader/navigation_resource_throttle.h", |
174 "+content/browser/loader/navigation_url_loader_impl_core.h", | 175 "+content/browser/loader/navigation_url_loader_impl_core.h", |
175 "+content/browser/loader/redirect_to_file_resource_handler.h", | 176 "+content/browser/loader/redirect_to_file_resource_handler.h", |
176 "+content/browser/loader/upload_data_stream_builder.h", | 177 "+content/browser/loader/upload_data_stream_builder.h", |
177 "+content/browser/resource_context_impl.h", | 178 "+content/browser/resource_context_impl.h", |
178 "+content/browser/service_worker/foreign_fetch_request_handler.h", | 179 "+content/browser/service_worker/foreign_fetch_request_handler.h", |
179 "+content/browser/service_worker/link_header_support.h", | 180 "+content/browser/service_worker/link_header_support.h", |
180 "+content/browser/service_worker/service_worker_request_handler.h", | 181 "+content/browser/service_worker/service_worker_request_handler.h", |
181 "+content/browser/streams/stream.h", | 182 "+content/browser/streams/stream.h", |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 "+content/common/url_loader.mojom.h", | 335 "+content/common/url_loader.mojom.h", |
335 "+content/common/url_loader_factory.mojom.h", | 336 "+content/common/url_loader_factory.mojom.h", |
336 "+content/public/browser/resource_context.h", | 337 "+content/public/browser/resource_context.h", |
337 "+content/public/browser/resource_dispatcher_host_delegate.h", | 338 "+content/public/browser/resource_dispatcher_host_delegate.h", |
338 "+content/public/common/content_paths.h", | 339 "+content/public/common/content_paths.h", |
339 "+content/public/common/process_type.h", | 340 "+content/public/common/process_type.h", |
340 "+content/public/test/test_browser_context.h", | 341 "+content/public/test/test_browser_context.h", |
341 "+content/public/test/test_browser_thread_bundle.h", | 342 "+content/public/test/test_browser_thread_bundle.h", |
342 ], | 343 ], |
343 } | 344 } |
OLD | NEW |