| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 "+content/public/browser/browser_message_filter.h", | 291 "+content/public/browser/browser_message_filter.h", |
| 292 ], | 292 ], |
| 293 "sync_resource_handler\.(cc|h)": [ | 293 "sync_resource_handler\.(cc|h)": [ |
| 294 "-content", | 294 "-content", |
| 295 "+content/browser/loader/netlog_observer.h", | 295 "+content/browser/loader/netlog_observer.h", |
| 296 "+content/browser/loader/resource_dispatcher_host_impl.h", | 296 "+content/browser/loader/resource_dispatcher_host_impl.h", |
| 297 "+content/browser/loader/resource_handler.h", | 297 "+content/browser/loader/resource_handler.h", |
| 298 "+content/browser/loader/resource_message_filter.h", | 298 "+content/browser/loader/resource_message_filter.h", |
| 299 "+content/browser/loader/resource_request_info_impl.h", | 299 "+content/browser/loader/resource_request_info_impl.h", |
| 300 "+content/browser/loader/sync_resource_handler.h", | 300 "+content/browser/loader/sync_resource_handler.h", |
| 301 "+content/public/browser/resource_controller.h", |
| 301 "+content/public/browser/resource_dispatcher_host_delegate.h", | 302 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 302 "+content/public/browser/resource_request_info.h", | 303 "+content/public/browser/resource_request_info.h", |
| 303 "+content/public/common/resource_response.h", | 304 "+content/public/common/resource_response.h", |
| 304 | 305 |
| 305 | 306 |
| 306 # TODO: To be replaced by mojo. | 307 # TODO: To be replaced by mojo. |
| 307 "+content/common/resource_messages.h", | 308 "+content/common/resource_messages.h", |
| 308 ], | 309 ], |
| 309 "test_url_loader_client\.(cc|h)": [ | 310 "test_url_loader_client\.(cc|h)": [ |
| 310 "-content", | 311 "-content", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "+content/public/browser/resource_dispatcher_host_delegate.h", | 343 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 343 "+content/public/common/content_paths.h", | 344 "+content/public/common/content_paths.h", |
| 344 "+content/public/common/process_type.h", | 345 "+content/public/common/process_type.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 |