| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "-content", | 80 "-content", |
| 81 "+content/browser/loader/async_resource_handler.h", | 81 "+content/browser/loader/async_resource_handler.h", |
| 82 "+content/browser/loader/mojo_async_resource_handler.h", | 82 "+content/browser/loader/mojo_async_resource_handler.h", |
| 83 "+content/browser/loader/test_url_loader_client.h", | 83 "+content/browser/loader/test_url_loader_client.h", |
| 84 "+content/browser/loader/netlog_observer.h", | 84 "+content/browser/loader/netlog_observer.h", |
| 85 "+content/browser/loader/resource_dispatcher_host_impl.h", | 85 "+content/browser/loader/resource_dispatcher_host_impl.h", |
| 86 "+content/browser/loader/resource_handler.h", | 86 "+content/browser/loader/resource_handler.h", |
| 87 "+content/browser/loader/resource_request_info_impl.h", | 87 "+content/browser/loader/resource_request_info_impl.h", |
| 88 "+content/common/content_export.h", | 88 "+content/common/content_export.h", |
| 89 "+content/common/resource_request_completion_status.h", | 89 "+content/common/resource_request_completion_status.h", |
| 90 "+content/public/browser/global_request_id.h", |
| 90 "+content/public/browser/resource_dispatcher_host_delegate.h", | 91 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 91 "+content/public/common/resource_response.h", | 92 "+content/public/common/resource_response.h", |
| 92 "+content/common/url_loader.mojom.h", | 93 "+content/common/url_loader.mojom.h", |
| 93 ], | 94 ], |
| 94 "mojo_async_resource_handler_unittest\.cc": [ | 95 "mojo_async_resource_handler_unittest\.cc": [ |
| 95 "-content", | 96 "-content", |
| 96 "+content/browser/loader/mojo_async_resource_handler.h", | 97 "+content/browser/loader/mojo_async_resource_handler.h", |
| 97 "+content/browser/loader/test_url_loader_client.h", | 98 "+content/browser/loader/test_url_loader_client.h", |
| 98 "+content/public/browser/navigation_data.h", | 99 "+content/public/browser/navigation_data.h", |
| 99 "+content/browser/loader/resource_dispatcher_host_impl.h", | 100 "+content/browser/loader/resource_dispatcher_host_impl.h", |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 "+content/public/browser/resource_dispatcher_host_delegate.h", | 340 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 340 "+content/public/common/content_paths.h", | 341 "+content/public/common/content_paths.h", |
| 341 "+content/public/common/process_type.h", | 342 "+content/public/common/process_type.h", |
| 342 "+content/public/test/test_browser_context.h", | 343 "+content/public/test/test_browser_context.h", |
| 343 "+content/public/test/test_browser_thread_bundle.h", | 344 "+content/public/test/test_browser_thread_bundle.h", |
| 344 | 345 |
| 345 #TODO: To be removed when PlzNavigate lands. | 346 #TODO: To be removed when PlzNavigate lands. |
| 346 "+content/browser/loader/navigation_resource_throttle.h" | 347 "+content/browser/loader/navigation_resource_throttle.h" |
| 347 ], | 348 ], |
| 348 } | 349 } |
| OLD | NEW |