| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "+content/browser/loader/mock_resource_loader.h", | 78 "+content/browser/loader/mock_resource_loader.h", |
| 79 "+content/browser/loader/mojo_async_resource_handler.h", | 79 "+content/browser/loader/mojo_async_resource_handler.h", |
| 80 "+content/browser/loader/test_url_loader_client.h", | 80 "+content/browser/loader/test_url_loader_client.h", |
| 81 "+content/browser/loader/resource_controller.h", | 81 "+content/browser/loader/resource_controller.h", |
| 82 "+content/browser/loader/resource_dispatcher_host_impl.h", | 82 "+content/browser/loader/resource_dispatcher_host_impl.h", |
| 83 "+content/browser/loader/resource_request_info_impl.h", | 83 "+content/browser/loader/resource_request_info_impl.h", |
| 84 "+content/browser/loader/resource_scheduler.h", | 84 "+content/browser/loader/resource_scheduler.h", |
| 85 "+content/common/resource_request.h", | 85 "+content/common/resource_request.h", |
| 86 "+content/common/resource_request_completion_status.h", | 86 "+content/common/resource_request_completion_status.h", |
| 87 "+content/common/url_loader.mojom.h", | 87 "+content/common/url_loader.mojom.h", |
| 88 "+content/common/url_loader_factory.mojom.h", |
| 88 "+content/public/browser/appcache_service.h", | 89 "+content/public/browser/appcache_service.h", |
| 89 "+content/public/browser/navigation_data.h", | 90 "+content/public/browser/navigation_data.h", |
| 90 "+content/public/browser/resource_context.h", | 91 "+content/public/browser/resource_context.h", |
| 91 "+content/public/browser/resource_dispatcher_host_delegate.h", | 92 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 92 "+content/public/browser/resource_throttle.h", | 93 "+content/public/browser/resource_throttle.h", |
| 93 "+content/public/browser/stream_info.h", | 94 "+content/public/browser/stream_info.h", |
| 94 "+content/public/common/previews_state.h", | 95 "+content/public/common/previews_state.h", |
| 95 "+content/public/common/resource_response.h", | 96 "+content/public/common/resource_response.h", |
| 96 "+content/public/common/resource_type.h", | 97 "+content/public/common/resource_type.h", |
| 97 "+content/public/test/test_browser_context.h", | 98 "+content/public/test/test_browser_context.h", |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "+content/public/browser/resource_context.h", | 343 "+content/public/browser/resource_context.h", |
| 343 "+content/public/browser/resource_dispatcher_host_delegate.h", | 344 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 344 "+content/public/common/content_paths.h", | 345 "+content/public/common/content_paths.h", |
| 345 "+content/public/test/test_browser_context.h", | 346 "+content/public/test/test_browser_context.h", |
| 346 "+content/public/test/test_browser_thread_bundle.h", | 347 "+content/public/test/test_browser_thread_bundle.h", |
| 347 | 348 |
| 348 #TODO: To be removed when PlzNavigate lands. | 349 #TODO: To be removed when PlzNavigate lands. |
| 349 "+content/browser/loader/navigation_resource_throttle.h" | 350 "+content/browser/loader/navigation_resource_throttle.h" |
| 350 ], | 351 ], |
| 351 } | 352 } |
| OLD | NEW |