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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 "+content/common/url_loader.mojom.h", | 319 "+content/common/url_loader.mojom.h", |
320 "+content/common/url_loader_factory.mojom.h", | 320 "+content/common/url_loader_factory.mojom.h", |
321 "+content/public/browser/browser_thread.h", | 321 "+content/public/browser/browser_thread.h", |
322 ], | 322 ], |
323 "url_loader_factory_impl_unittest\.cc": [ | 323 "url_loader_factory_impl_unittest\.cc": [ |
324 "-content", | 324 "-content", |
325 "+content/browser/loader/mojo_async_resource_handler.h", | 325 "+content/browser/loader/mojo_async_resource_handler.h", |
326 "+content/browser/loader/test_url_loader_client.h", | 326 "+content/browser/loader/test_url_loader_client.h", |
327 "+content/browser/loader/resource_dispatcher_host_impl.h", | 327 "+content/browser/loader/resource_dispatcher_host_impl.h", |
328 "+content/browser/loader/resource_message_filter.h", | 328 "+content/browser/loader/resource_message_filter.h", |
| 329 "+content/browser/loader/resource_request_info_impl.h", |
329 "+content/browser/loader/url_loader_factory_impl.h", | 330 "+content/browser/loader/url_loader_factory_impl.h", |
330 "+content/browser/loader_delegate_impl.h", | 331 "+content/browser/loader_delegate_impl.h", |
331 "+content/common/resource_request.h", | 332 "+content/common/resource_request.h", |
332 "+content/common/resource_request_completion_status.h", | 333 "+content/common/resource_request_completion_status.h", |
333 "+content/common/url_loader.mojom.h", | 334 "+content/common/url_loader.mojom.h", |
334 "+content/common/url_loader_factory.mojom.h", | 335 "+content/common/url_loader_factory.mojom.h", |
335 "+content/public/browser/resource_context.h", | 336 "+content/public/browser/resource_context.h", |
336 "+content/public/browser/resource_dispatcher_host_delegate.h", | 337 "+content/public/browser/resource_dispatcher_host_delegate.h", |
337 "+content/public/common/content_paths.h", | 338 "+content/public/common/content_paths.h", |
338 "+content/public/common/process_type.h", | 339 "+content/public/common/process_type.h", |
339 "+content/public/test/test_browser_context.h", | 340 "+content/public/test/test_browser_context.h", |
340 "+content/public/test/test_browser_thread_bundle.h", | 341 "+content/public/test/test_browser_thread_bundle.h", |
341 | 342 |
342 #TODO: To be removed when PlzNavigate lands. | 343 #TODO: To be removed when PlzNavigate lands. |
343 "+content/browser/loader/navigation_resource_throttle.h" | 344 "+content/browser/loader/navigation_resource_throttle.h" |
344 ], | 345 ], |
345 } | 346 } |
OLD | NEW |