| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "-content", | 243 "-content", |
| 244 ], | 244 ], |
| 245 "resource_request_info_impl\.(cc|h)": [ | 245 "resource_request_info_impl\.(cc|h)": [ |
| 246 "-content", | 246 "-content", |
| 247 "+content/browser/loader/global_routing_id.h", | 247 "+content/browser/loader/global_routing_id.h", |
| 248 "+content/browser/loader/resource_handler.h", | 248 "+content/browser/loader/resource_handler.h", |
| 249 "+content/browser/loader/resource_message_filter.h", | 249 "+content/browser/loader/resource_message_filter.h", |
| 250 "+content/browser/loader/resource_request_info_impl.h", | 250 "+content/browser/loader/resource_request_info_impl.h", |
| 251 "+content/common/content_export.h", | 251 "+content/common/content_export.h", |
| 252 "+content/common/resource_request_body_impl.h", | 252 "+content/common/resource_request_body_impl.h", |
| 253 "+content/common/url_loader.mojom.h", |
| 253 "+content/public/browser/global_request_id.h", | 254 "+content/public/browser/global_request_id.h", |
| 254 "+content/public/browser/resource_request_info.h", | 255 "+content/public/browser/resource_request_info.h", |
| 255 "+content/public/common/referrer.h", | 256 "+content/public/common/referrer.h", |
| 256 "+content/public/common/resource_type.h", | 257 "+content/public/common/resource_type.h", |
| 257 | 258 |
| 258 # TODO: these all have to be removed. | 259 # TODO: these all have to be removed. |
| 259 "+content/browser/frame_host/frame_tree_node.h", | 260 "+content/browser/frame_host/frame_tree_node.h", |
| 260 "+content/browser/service_worker/service_worker_context_wrapper.h", | 261 "+content/browser/service_worker/service_worker_context_wrapper.h", |
| 261 "+content/browser/web_contents/web_contents_impl.h", | 262 "+content/browser/web_contents/web_contents_impl.h", |
| 262 "+content/common/net/url_request_service_worker_data.h", | 263 "+content/common/net/url_request_service_worker_data.h", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 "+content/public/browser/resource_dispatcher_host_delegate.h", | 341 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 341 "+content/public/common/content_paths.h", | 342 "+content/public/common/content_paths.h", |
| 342 "+content/public/common/process_type.h", | 343 "+content/public/common/process_type.h", |
| 343 "+content/public/test/test_browser_context.h", | 344 "+content/public/test/test_browser_context.h", |
| 344 "+content/public/test/test_browser_thread_bundle.h", | 345 "+content/public/test/test_browser_thread_bundle.h", |
| 345 | 346 |
| 346 #TODO: To be removed when PlzNavigate lands. | 347 #TODO: To be removed when PlzNavigate lands. |
| 347 "+content/browser/loader/navigation_resource_throttle.h" | 348 "+content/browser/loader/navigation_resource_throttle.h" |
| 348 ], | 349 ], |
| 349 } | 350 } |
| OLD | NEW |