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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 "+content/common/net/url_request_user_data.h", | 274 "+content/common/net/url_request_user_data.h", |
275 "+content/public/browser/browser_thread.h", | 275 "+content/public/browser/browser_thread.h", |
276 "+content/public/browser/navigation_ui_data.h", | 276 "+content/public/browser/navigation_ui_data.h", |
277 "+content/public/common/browser_side_navigation_policy.h", | 277 "+content/public/common/browser_side_navigation_policy.h", |
278 "+content/public/common/process_type.h", | 278 "+content/public/common/process_type.h", |
279 ], | 279 ], |
280 "resource_requester_info\.(cc|h)": [ | 280 "resource_requester_info\.(cc|h)": [ |
281 "-content", | 281 "-content", |
282 "+content/browser/loader/resource_requester_info.h", | 282 "+content/browser/loader/resource_requester_info.h", |
283 "+content/common/content_export.h", | 283 "+content/common/content_export.h", |
| 284 "+content/public/browser/resource_context.h", |
284 "+content/public/common/resource_type.h", | 285 "+content/public/common/resource_type.h", |
285 | 286 |
286 # TODO: these all have to be removed. | 287 # TODO: these all have to be removed. |
287 "+content/browser/appcache/chrome_appcache_service.h", | 288 "+content/browser/appcache/chrome_appcache_service.h", |
288 "+content/browser/blob_storage/chrome_blob_storage_context.h", | 289 "+content/browser/blob_storage/chrome_blob_storage_context.h", |
289 "+content/browser/service_worker/service_worker_context_wrapper.h", | 290 "+content/browser/service_worker/service_worker_context_wrapper.h", |
290 "+content/public/browser/browser_thread.h", | 291 "+content/public/browser/browser_thread.h", |
| 292 "+content/public/common/browser_side_navigation_policy.h", |
291 ], | 293 ], |
292 "resource_scheduler\.(cc|h)": [ | 294 "resource_scheduler\.(cc|h)": [ |
293 "-content", | 295 "-content", |
294 "+content/browser/loader/resource_scheduler.h", | 296 "+content/browser/loader/resource_scheduler.h", |
295 "+content/common/content_export.h", | 297 "+content/common/content_export.h", |
296 "+content/public/browser/resource_controller.h", | 298 "+content/public/browser/resource_controller.h", |
297 "+content/public/browser/resource_request_info.h", | 299 "+content/public/browser/resource_request_info.h", |
298 "+content/public/browser/resource_throttle.h", | 300 "+content/public/browser/resource_throttle.h", |
299 | 301 |
300 # TODO: To be replaced by mojo. | 302 # TODO: To be replaced by mojo. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 "+content/public/browser/resource_context.h", | 363 "+content/public/browser/resource_context.h", |
362 "+content/public/browser/resource_dispatcher_host_delegate.h", | 364 "+content/public/browser/resource_dispatcher_host_delegate.h", |
363 "+content/public/common/content_paths.h", | 365 "+content/public/common/content_paths.h", |
364 "+content/public/test/test_browser_context.h", | 366 "+content/public/test/test_browser_context.h", |
365 "+content/public/test/test_browser_thread_bundle.h", | 367 "+content/public/test/test_browser_thread_bundle.h", |
366 | 368 |
367 #TODO: To be removed when PlzNavigate lands. | 369 #TODO: To be removed when PlzNavigate lands. |
368 "+content/browser/loader/navigation_resource_throttle.h" | 370 "+content/browser/loader/navigation_resource_throttle.h" |
369 ], | 371 ], |
370 } | 372 } |
OLD | NEW |