| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "+content/public/browser/content_browser_client.h", | 153 "+content/public/browser/content_browser_client.h", |
| 154 "+content/public/browser/plugin_service.h", | 154 "+content/public/browser/plugin_service.h", |
| 155 "+content/public/browser/resource_request_details.h", | 155 "+content/public/browser/resource_request_details.h", |
| 156 "+content/public/browser/stream_handle.h", | 156 "+content/public/browser/stream_handle.h", |
| 157 "+content/public/browser/stream_info.h", | 157 "+content/public/browser/stream_info.h", |
| 158 "+content/public/browser/web_contents_observer.h", | 158 "+content/public/browser/web_contents_observer.h", |
| 159 "+content/public/common/browser_side_navigation_policy.h", | 159 "+content/public/common/browser_side_navigation_policy.h", |
| 160 "+content/public/common/content_features.h", | 160 "+content/public/common/content_features.h", |
| 161 "+content/public/common/content_switches.h", | 161 "+content/public/common/content_switches.h", |
| 162 "+content/public/common/process_type.h", | 162 "+content/public/common/process_type.h", |
| 163 "+content/public/common/request_context_type.h", |
| 163 "+content/public/common/resource_type.h", | 164 "+content/public/common/resource_type.h", |
| 164 | 165 |
| 165 # TODO: To be replaced by mojo. | 166 # TODO: To be replaced by mojo. |
| 166 "+content/common/resource_messages.h", | 167 "+content/common/resource_messages.h", |
| 167 "+content/common/resource_request.h", | 168 "+content/common/resource_request.h", |
| 168 "+content/common/resource_request_completion_status.h", | 169 "+content/common/resource_request_completion_status.h", |
| 169 "+content/common/view_messages.h", | 170 "+content/common/view_messages.h", |
| 170 ], | 171 ], |
| 171 "resource_handler\.(cc|h)": [ | 172 "resource_handler\.(cc|h)": [ |
| 172 "-content", | 173 "-content", |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 "+content/browser/loader/sync_resource_handler.h", | 261 "+content/browser/loader/sync_resource_handler.h", |
| 261 "+content/public/browser/resource_dispatcher_host_delegate.h", | 262 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 262 "+content/public/browser/resource_request_info.h", | 263 "+content/public/browser/resource_request_info.h", |
| 263 "+content/public/common/resource_response.h", | 264 "+content/public/common/resource_response.h", |
| 264 | 265 |
| 265 | 266 |
| 266 # TODO: To be replaced by mojo. | 267 # TODO: To be replaced by mojo. |
| 267 "+content/common/resource_messages.h", | 268 "+content/common/resource_messages.h", |
| 268 ], | 269 ], |
| 269 } | 270 } |
| OLD | NEW |