| 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 = { |
| 11 "async_resource_handler\.(cc|h)": [ | 11 "async_resource_handler\.(cc|h)": [ |
| 12 "-content", | 12 "-content", |
| 13 "+content/browser/loader/async_resource_handler.h", | 13 "+content/browser/loader/async_resource_handler.h", |
| 14 "+content/browser/loader/netlog_observer.h", | 14 "+content/browser/loader/netlog_observer.h", |
| 15 "+content/browser/loader/resource_buffer.h", | 15 "+content/browser/loader/resource_buffer.h", |
| 16 "+content/browser/loader/resource_dispatcher_host_impl.h", | 16 "+content/browser/loader/resource_dispatcher_host_impl.h", |
| 17 "+content/browser/loader/resource_handler.h", | 17 "+content/browser/loader/resource_handler.h", |
| 18 "+content/browser/loader/resource_message_delegate.h", | 18 "+content/browser/loader/resource_message_delegate.h", |
| 19 "+content/browser/loader/resource_message_filter.h", | 19 "+content/browser/loader/resource_message_filter.h", |
| 20 "+content/browser/loader/resource_request_info_impl.h", | 20 "+content/browser/loader/resource_request_info_impl.h", |
| 21 "+content/common/content_export.h", | 21 "+content/common/content_export.h", |
| 22 "+content/public/browser/resource_dispatcher_host_delegate.h", | 22 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 23 "+content/public/common/resource_response.h", | 23 "+content/public/common/resource_response.h", |
| 24 | 24 |
| 25 # TODO: these all have to be removed. | 25 # TODO: these all have to be removed. |
| 26 "+content/browser/host_zoom_map_impl.h", |
| 26 "+content/browser/resource_context_impl.h", | 27 "+content/browser/resource_context_impl.h", |
| 27 "+content/public/common/content_features.h", | 28 "+content/public/common/content_features.h", |
| 28 | 29 |
| 29 # TODO: To be replaced by mojo. | 30 # TODO: To be replaced by mojo. |
| 30 "+content/common/resource_messages.h", | 31 "+content/common/resource_messages.h", |
| 31 "+content/common/resource_request_completion_status.h", | 32 "+content/common/resource_request_completion_status.h", |
| 32 "+content/common/view_messages.h", | 33 "+content/common/view_messages.h", |
| 33 ], | 34 ], |
| 34 "async_revalidation_driver\.(cc|h)": [ | 35 "async_revalidation_driver\.(cc|h)": [ |
| 35 "-content", | 36 "-content", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 "+content/browser/loader/sync_resource_handler.h", | 275 "+content/browser/loader/sync_resource_handler.h", |
| 275 "+content/public/browser/resource_dispatcher_host_delegate.h", | 276 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 276 "+content/public/browser/resource_request_info.h", | 277 "+content/public/browser/resource_request_info.h", |
| 277 "+content/public/common/resource_response.h", | 278 "+content/public/common/resource_response.h", |
| 278 | 279 |
| 279 | 280 |
| 280 # TODO: To be replaced by mojo. | 281 # TODO: To be replaced by mojo. |
| 281 "+content/common/resource_messages.h", | 282 "+content/common/resource_messages.h", |
| 282 ], | 283 ], |
| 283 } | 284 } |
| OLD | NEW |