| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 "+content/browser/loader/resource_loader_delegate.h", | 182 "+content/browser/loader/resource_loader_delegate.h", |
| 183 "+content/browser/loader/resource_request_info_impl.h", | 183 "+content/browser/loader/resource_request_info_impl.h", |
| 184 "+content/browser/ssl/ssl_client_auth_handler.h", | 184 "+content/browser/ssl/ssl_client_auth_handler.h", |
| 185 "+content/browser/ssl/ssl_error_handler.h", | 185 "+content/browser/ssl/ssl_error_handler.h", |
| 186 "+content/common/content_export.h", | 186 "+content/common/content_export.h", |
| 187 "+content/common/ssl_status_serialization.h", | 187 "+content/common/ssl_status_serialization.h", |
| 188 "+content/public/browser/cert_store.h", | 188 "+content/public/browser/cert_store.h", |
| 189 "+content/public/browser/resource_controller.h", | 189 "+content/public/browser/resource_controller.h", |
| 190 "+content/public/browser/resource_dispatcher_host_login_delegate.h", | 190 "+content/public/browser/resource_dispatcher_host_login_delegate.h", |
| 191 "+content/public/common/resource_response.h", | 191 "+content/public/common/resource_response.h", |
| 192 "+content/public/common/resource_type.h", |
| 192 | 193 |
| 193 # TODO: these all have to be removed. | 194 # TODO: these all have to be removed. |
| 194 "+content/browser/appcache/appcache_interceptor.h", | 195 "+content/browser/appcache/appcache_interceptor.h", |
| 195 "+content/browser/child_process_security_policy_impl.h", | 196 "+content/browser/child_process_security_policy_impl.h", |
| 196 "+content/browser/loader/cross_site_resource_handler.h", | 197 "+content/browser/loader/cross_site_resource_handler.h", |
| 197 "+content/browser/loader/detachable_resource_handler.h", | 198 "+content/browser/loader/detachable_resource_handler.h", |
| 198 "+content/browser/service_worker/service_worker_request_handler.h", | 199 "+content/browser/service_worker/service_worker_request_handler.h", |
| 199 "+content/browser/service_worker/service_worker_response_info.h", | 200 "+content/browser/service_worker/service_worker_response_info.h", |
| 200 "+content/browser/ssl/ssl_manager.h", | 201 "+content/browser/ssl/ssl_manager.h", |
| 201 "+content/browser/ssl/ssl_policy.h", | 202 "+content/browser/ssl/ssl_policy.h", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 "+content/browser/loader/sync_resource_handler.h", | 262 "+content/browser/loader/sync_resource_handler.h", |
| 262 "+content/public/browser/resource_dispatcher_host_delegate.h", | 263 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 263 "+content/public/browser/resource_request_info.h", | 264 "+content/public/browser/resource_request_info.h", |
| 264 "+content/public/common/resource_response.h", | 265 "+content/public/common/resource_response.h", |
| 265 | 266 |
| 266 | 267 |
| 267 # TODO: To be replaced by mojo. | 268 # TODO: To be replaced by mojo. |
| 268 "+content/common/resource_messages.h", | 269 "+content/common/resource_messages.h", |
| 269 ], | 270 ], |
| 270 } | 271 } |
| OLD | NEW |