| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "+content/browser/loader/resource_request_info_impl.h", | 97 "+content/browser/loader/resource_request_info_impl.h", |
| 98 "+content/common/content_export.h", | 98 "+content/common/content_export.h", |
| 99 "+content/common/resource_request_completion_status.h", | 99 "+content/common/resource_request_completion_status.h", |
| 100 "+content/public/browser/global_request_id.h", | 100 "+content/public/browser/global_request_id.h", |
| 101 "+content/public/browser/resource_dispatcher_host_delegate.h", | 101 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 102 "+content/public/common/resource_response.h", | 102 "+content/public/common/resource_response.h", |
| 103 "+content/common/url_loader.mojom.h", | 103 "+content/common/url_loader.mojom.h", |
| 104 ], | 104 ], |
| 105 "mojo_async_resource_handler_unittest\.cc": [ | 105 "mojo_async_resource_handler_unittest\.cc": [ |
| 106 "-content", | 106 "-content", |
| 107 "+content/browser/loader/mock_resource_loader.h", |
| 107 "+content/browser/loader/mojo_async_resource_handler.h", | 108 "+content/browser/loader/mojo_async_resource_handler.h", |
| 108 "+content/browser/loader/test_url_loader_client.h", | 109 "+content/browser/loader/test_url_loader_client.h", |
| 109 "+content/public/browser/navigation_data.h", | |
| 110 "+content/browser/loader/resource_controller.h", | 110 "+content/browser/loader/resource_controller.h", |
| 111 "+content/browser/loader/resource_dispatcher_host_impl.h", | 111 "+content/browser/loader/resource_dispatcher_host_impl.h", |
| 112 "+content/browser/loader/resource_request_info_impl.h", | 112 "+content/browser/loader/resource_request_info_impl.h", |
| 113 "+content/common/resource_request.h", | 113 "+content/common/resource_request.h", |
| 114 "+content/common/resource_request_completion_status.h", | 114 "+content/common/resource_request_completion_status.h", |
| 115 "+content/common/url_loader.mojom.h", | 115 "+content/common/url_loader.mojom.h", |
| 116 "+content/public/browser/appcache_service.h", | 116 "+content/public/browser/appcache_service.h", |
| 117 "+content/public/browser/navigation_data.h", |
| 117 "+content/public/browser/resource_context.h", | 118 "+content/public/browser/resource_context.h", |
| 118 "+content/public/browser/resource_dispatcher_host_delegate.h", | 119 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 119 "+content/public/browser/resource_throttle.h", | 120 "+content/public/browser/resource_throttle.h", |
| 120 "+content/public/browser/stream_info.h", | 121 "+content/public/browser/stream_info.h", |
| 121 "+content/public/common/resource_response.h", | 122 "+content/public/common/resource_response.h", |
| 122 "+content/public/common/resource_type.h", | 123 "+content/public/common/resource_type.h", |
| 123 "+content/public/test/test_browser_context.h", | 124 "+content/public/test/test_browser_context.h", |
| 124 "+content/public/test/test_browser_thread_bundle.h", | 125 "+content/public/test/test_browser_thread_bundle.h", |
| 125 ], | 126 ], |
| 126 "netlog_observer\.(cc|h)": [ | 127 "netlog_observer\.(cc|h)": [ |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 "+content/public/browser/resource_context.h", | 370 "+content/public/browser/resource_context.h", |
| 370 "+content/public/browser/resource_dispatcher_host_delegate.h", | 371 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 371 "+content/public/common/content_paths.h", | 372 "+content/public/common/content_paths.h", |
| 372 "+content/public/test/test_browser_context.h", | 373 "+content/public/test/test_browser_context.h", |
| 373 "+content/public/test/test_browser_thread_bundle.h", | 374 "+content/public/test/test_browser_thread_bundle.h", |
| 374 | 375 |
| 375 #TODO: To be removed when PlzNavigate lands. | 376 #TODO: To be removed when PlzNavigate lands. |
| 376 "+content/browser/loader/navigation_resource_throttle.h" | 377 "+content/browser/loader/navigation_resource_throttle.h" |
| 377 ], | 378 ], |
| 378 } | 379 } |
| OLD | NEW |