| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "+content/browser/child_process_security_policy_impl.h", | 127 "+content/browser/child_process_security_policy_impl.h", |
| 128 "+content/browser/download/download_resource_handler.h", | 128 "+content/browser/download/download_resource_handler.h", |
| 129 "+content/browser/download/save_file_manager.h", | 129 "+content/browser/download/save_file_manager.h", |
| 130 "+content/browser/download/save_file_resource_handler.h", | 130 "+content/browser/download/save_file_resource_handler.h", |
| 131 "+content/browser/download/save_types.h", | 131 "+content/browser/download/save_types.h", |
| 132 "+content/browser/frame_host/frame_tree.h", | 132 "+content/browser/frame_host/frame_tree.h", |
| 133 "+content/browser/frame_host/navigation_request_info.h", | 133 "+content/browser/frame_host/navigation_request_info.h", |
| 134 "+content/browser/frame_host/navigator.h", | 134 "+content/browser/frame_host/navigator.h", |
| 135 "+content/browser/loader/cross_site_resource_handler.h", | 135 "+content/browser/loader/cross_site_resource_handler.h", |
| 136 "+content/browser/loader/detachable_resource_handler.h", | 136 "+content/browser/loader/detachable_resource_handler.h", |
| 137 "+content/browser/loader/mime_type_resource_handler.h", | 137 "+content/browser/loader/intercepting_resource_handler.h", |
| 138 "+content/browser/loader/mime_sniffing_resource_handler.h", |
| 138 "+content/browser/loader/navigation_resource_handler.h", | 139 "+content/browser/loader/navigation_resource_handler.h", |
| 139 "+content/browser/loader/navigation_resource_throttle.h", | 140 "+content/browser/loader/navigation_resource_throttle.h", |
| 140 "+content/browser/loader/navigation_url_loader_impl_core.h", | 141 "+content/browser/loader/navigation_url_loader_impl_core.h", |
| 141 "+content/browser/loader/redirect_to_file_resource_handler.h", | 142 "+content/browser/loader/redirect_to_file_resource_handler.h", |
| 142 "+content/browser/loader/upload_data_stream_builder.h", | 143 "+content/browser/loader/upload_data_stream_builder.h", |
| 143 "+content/browser/renderer_host/render_view_host_impl.h", | 144 "+content/browser/renderer_host/render_view_host_impl.h", |
| 144 "+content/browser/resource_context_impl.h", | 145 "+content/browser/resource_context_impl.h", |
| 145 "+content/browser/service_worker/foreign_fetch_request_handler.h", | 146 "+content/browser/service_worker/foreign_fetch_request_handler.h", |
| 146 "+content/browser/service_worker/link_header_support.h", | 147 "+content/browser/service_worker/link_header_support.h", |
| 147 "+content/browser/service_worker/service_worker_request_handler.h", | 148 "+content/browser/service_worker/service_worker_request_handler.h", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 "+content/browser/loader/sync_resource_handler.h", | 270 "+content/browser/loader/sync_resource_handler.h", |
| 270 "+content/public/browser/resource_dispatcher_host_delegate.h", | 271 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 271 "+content/public/browser/resource_request_info.h", | 272 "+content/public/browser/resource_request_info.h", |
| 272 "+content/public/common/resource_response.h", | 273 "+content/public/common/resource_response.h", |
| 273 | 274 |
| 274 | 275 |
| 275 # TODO: To be replaced by mojo. | 276 # TODO: To be replaced by mojo. |
| 276 "+content/common/resource_messages.h", | 277 "+content/common/resource_messages.h", |
| 277 ], | 278 ], |
| 278 } | 279 } |
| OLD | NEW |