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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 # TODO: these all have to be removed. | 197 # TODO: these all have to be removed. |
198 "+content/browser/appcache/appcache_interceptor.h", | 198 "+content/browser/appcache/appcache_interceptor.h", |
199 "+content/browser/child_process_security_policy_impl.h", | 199 "+content/browser/child_process_security_policy_impl.h", |
200 "+content/browser/loader/cross_site_resource_handler.h", | 200 "+content/browser/loader/cross_site_resource_handler.h", |
201 "+content/browser/loader/detachable_resource_handler.h", | 201 "+content/browser/loader/detachable_resource_handler.h", |
202 "+content/browser/service_worker/service_worker_request_handler.h", | 202 "+content/browser/service_worker/service_worker_request_handler.h", |
203 "+content/browser/service_worker/service_worker_response_info.h", | 203 "+content/browser/service_worker/service_worker_response_info.h", |
204 "+content/browser/ssl/ssl_manager.h", | 204 "+content/browser/ssl/ssl_manager.h", |
205 "+content/browser/ssl/ssl_policy.h", | 205 "+content/browser/ssl/ssl_policy.h", |
206 "+content/public/browser/cert_store.h", | 206 "+content/public/browser/cert_store.h", |
207 "+content/public/browser/resource_context.h", | |
208 "+content/public/browser/signed_certificate_timestamp_store.h", | 207 "+content/public/browser/signed_certificate_timestamp_store.h", |
209 "+content/public/common/content_client.h", | 208 "+content/public/common/content_client.h", |
210 "+content/public/common/content_switches.h", | 209 "+content/public/common/content_switches.h", |
211 "+content/public/common/process_type.h", | 210 "+content/public/common/process_type.h", |
212 "+content/public/common/security_style.h", | 211 "+content/public/common/security_style.h", |
213 "+content/public/common/signed_certificate_timestamp_id_and_status.h", | 212 "+content/public/common/signed_certificate_timestamp_id_and_status.h", |
214 ], | 213 ], |
215 "resource_handler_delegate\.h": [ | 214 "resource_handler_delegate\.h": [ |
216 "-content", | 215 "-content", |
217 ], | 216 ], |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 "+content/browser/loader/sync_resource_handler.h", | 268 "+content/browser/loader/sync_resource_handler.h", |
270 "+content/public/browser/resource_dispatcher_host_delegate.h", | 269 "+content/public/browser/resource_dispatcher_host_delegate.h", |
271 "+content/public/browser/resource_request_info.h", | 270 "+content/public/browser/resource_request_info.h", |
272 "+content/public/common/resource_response.h", | 271 "+content/public/common/resource_response.h", |
273 | 272 |
274 | 273 |
275 # TODO: To be replaced by mojo. | 274 # TODO: To be replaced by mojo. |
276 "+content/common/resource_messages.h", | 275 "+content/common/resource_messages.h", |
277 ], | 276 ], |
278 } | 277 } |
OLD | NEW |