| 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 "-content", | 338 "-content", |
| 339 "+content/browser/loader/test_url_loader_client.h", | 339 "+content/browser/loader/test_url_loader_client.h", |
| 340 "+content/common/resource_request_completion_status.h", | 340 "+content/common/resource_request_completion_status.h", |
| 341 "+content/common/url_loader.mojom.h", | 341 "+content/common/url_loader.mojom.h", |
| 342 "+content/common/url_loader_factory.mojom.h", | 342 "+content/common/url_loader_factory.mojom.h", |
| 343 "+content/public/common/resource_response.h", | 343 "+content/public/common/resource_response.h", |
| 344 ], | 344 ], |
| 345 "upload_progress_tracker\.(cc|h)": [ | 345 "upload_progress_tracker\.(cc|h)": [ |
| 346 "-content", | 346 "-content", |
| 347 "+content/browser/loader/upload_progress_tracker.h", | 347 "+content/browser/loader/upload_progress_tracker.h", |
| 348 "+content/common/content_export.h", |
| 348 ], | 349 ], |
| 349 "url_loader_factory_impl\.(cc|h)": [ | 350 "url_loader_factory_impl\.(cc|h)": [ |
| 350 "-content", | 351 "-content", |
| 351 "+content/browser/loader/resource_dispatcher_host_impl.h", | 352 "+content/browser/loader/resource_dispatcher_host_impl.h", |
| 352 "+content/browser/loader/resource_requester_info.h", | 353 "+content/browser/loader/resource_requester_info.h", |
| 353 "+content/browser/loader/url_loader_factory_impl.h", | 354 "+content/browser/loader/url_loader_factory_impl.h", |
| 354 "+content/common/content_export.h", | 355 "+content/common/content_export.h", |
| 355 "+content/common/resource_request.h", | 356 "+content/common/resource_request.h", |
| 356 "+content/common/url_loader.mojom.h", | 357 "+content/common/url_loader.mojom.h", |
| 357 "+content/common/url_loader_factory.mojom.h", | 358 "+content/common/url_loader_factory.mojom.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 374 "+content/public/browser/resource_context.h", | 375 "+content/public/browser/resource_context.h", |
| 375 "+content/public/browser/resource_dispatcher_host_delegate.h", | 376 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 376 "+content/public/common/content_paths.h", | 377 "+content/public/common/content_paths.h", |
| 377 "+content/public/test/test_browser_context.h", | 378 "+content/public/test/test_browser_context.h", |
| 378 "+content/public/test/test_browser_thread_bundle.h", | 379 "+content/public/test/test_browser_thread_bundle.h", |
| 379 | 380 |
| 380 #TODO: To be removed when PlzNavigate lands. | 381 #TODO: To be removed when PlzNavigate lands. |
| 381 "+content/browser/loader/navigation_resource_throttle.h" | 382 "+content/browser/loader/navigation_resource_throttle.h" |
| 382 ], | 383 ], |
| 383 } | 384 } |
| OLD | NEW |