| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "resource_handler_delegate\.h": [ | 218 "resource_handler_delegate\.h": [ |
| 219 "-content", | 219 "-content", |
| 220 ], | 220 ], |
| 221 "resource_request_info_impl\.(cc|h)": [ | 221 "resource_request_info_impl\.(cc|h)": [ |
| 222 "-content", | 222 "-content", |
| 223 "+content/browser/loader/global_routing_id.h", | 223 "+content/browser/loader/global_routing_id.h", |
| 224 "+content/browser/loader/resource_handler.h", | 224 "+content/browser/loader/resource_handler.h", |
| 225 "+content/browser/loader/resource_message_filter.h", | 225 "+content/browser/loader/resource_message_filter.h", |
| 226 "+content/browser/loader/resource_request_info_impl.h", | 226 "+content/browser/loader/resource_request_info_impl.h", |
| 227 "+content/common/content_export.h", | 227 "+content/common/content_export.h", |
| 228 "+content/common/resource_request_body.h", |
| 228 "+content/public/browser/global_request_id.h", | 229 "+content/public/browser/global_request_id.h", |
| 229 "+content/public/browser/resource_request_info.h", | 230 "+content/public/browser/resource_request_info.h", |
| 230 "+content/public/common/referrer.h", | 231 "+content/public/common/referrer.h", |
| 231 "+content/public/common/resource_type.h", | 232 "+content/public/common/resource_type.h", |
| 232 | 233 |
| 233 # TODO: these all have to be removed. | 234 # TODO: these all have to be removed. |
| 234 "+content/browser/frame_host/frame_tree_node.h", | 235 "+content/browser/frame_host/frame_tree_node.h", |
| 235 "+content/browser/web_contents/web_contents_impl.h", | 236 "+content/browser/web_contents/web_contents_impl.h", |
| 236 "+content/common/net/url_request_service_worker_data.h", | 237 "+content/common/net/url_request_service_worker_data.h", |
| 237 "+content/common/net/url_request_user_data.h", | 238 "+content/common/net/url_request_user_data.h", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 "+content/browser/loader/sync_resource_handler.h", | 272 "+content/browser/loader/sync_resource_handler.h", |
| 272 "+content/public/browser/resource_dispatcher_host_delegate.h", | 273 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 273 "+content/public/browser/resource_request_info.h", | 274 "+content/public/browser/resource_request_info.h", |
| 274 "+content/public/common/resource_response.h", | 275 "+content/public/common/resource_response.h", |
| 275 | 276 |
| 276 | 277 |
| 277 # TODO: To be replaced by mojo. | 278 # TODO: To be replaced by mojo. |
| 278 "+content/common/resource_messages.h", | 279 "+content/common/resource_messages.h", |
| 279 ], | 280 ], |
| 280 } | 281 } |
| OLD | NEW |