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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 "+content/common/net/url_request_user_data.h", | 265 "+content/common/net/url_request_user_data.h", |
266 "+content/public/browser/browser_thread.h", | 266 "+content/public/browser/browser_thread.h", |
267 "+content/public/browser/navigation_ui_data.h", | 267 "+content/public/browser/navigation_ui_data.h", |
268 "+content/public/common/browser_side_navigation_policy.h", | 268 "+content/public/common/browser_side_navigation_policy.h", |
269 "+content/public/common/process_type.h", | 269 "+content/public/common/process_type.h", |
270 ], | 270 ], |
271 "resource_requester_info\.(cc|h)": [ | 271 "resource_requester_info\.(cc|h)": [ |
272 "-content", | 272 "-content", |
273 "+content/browser/loader/resource_requester_info.h", | 273 "+content/browser/loader/resource_requester_info.h", |
274 "+content/common/content_export.h", | 274 "+content/common/content_export.h", |
| 275 "+content/public/browser/resource_context.h", |
275 "+content/public/common/resource_type.h", | 276 "+content/public/common/resource_type.h", |
276 | 277 |
277 # TODO: these all have to be removed. | 278 # TODO: these all have to be removed. |
278 "+content/browser/appcache/chrome_appcache_service.h", | 279 "+content/browser/appcache/chrome_appcache_service.h", |
279 "+content/browser/blob_storage/chrome_blob_storage_context.h", | 280 "+content/browser/blob_storage/chrome_blob_storage_context.h", |
280 "+content/browser/service_worker/service_worker_context_wrapper.h", | 281 "+content/browser/service_worker/service_worker_context_wrapper.h", |
281 "+content/public/browser/browser_thread.h", | 282 "+content/public/browser/browser_thread.h", |
| 283 "+content/public/common/browser_side_navigation_policy.h", |
282 ], | 284 ], |
283 "resource_scheduler\.(cc|h)": [ | 285 "resource_scheduler\.(cc|h)": [ |
284 "-content", | 286 "-content", |
285 "+content/browser/loader/resource_scheduler.h", | 287 "+content/browser/loader/resource_scheduler.h", |
286 "+content/common/content_export.h", | 288 "+content/common/content_export.h", |
287 "+content/public/browser/resource_controller.h", | 289 "+content/public/browser/resource_controller.h", |
288 "+content/public/browser/resource_request_info.h", | 290 "+content/public/browser/resource_request_info.h", |
289 "+content/public/browser/resource_throttle.h", | 291 "+content/public/browser/resource_throttle.h", |
290 | 292 |
291 # TODO: To be replaced by mojo. | 293 # TODO: To be replaced by mojo. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 "+content/public/browser/resource_context.h", | 354 "+content/public/browser/resource_context.h", |
353 "+content/public/browser/resource_dispatcher_host_delegate.h", | 355 "+content/public/browser/resource_dispatcher_host_delegate.h", |
354 "+content/public/common/content_paths.h", | 356 "+content/public/common/content_paths.h", |
355 "+content/public/test/test_browser_context.h", | 357 "+content/public/test/test_browser_context.h", |
356 "+content/public/test/test_browser_thread_bundle.h", | 358 "+content/public/test/test_browser_thread_bundle.h", |
357 | 359 |
358 #TODO: To be removed when PlzNavigate lands. | 360 #TODO: To be removed when PlzNavigate lands. |
359 "+content/browser/loader/navigation_resource_throttle.h" | 361 "+content/browser/loader/navigation_resource_throttle.h" |
360 ], | 362 ], |
361 } | 363 } |
OLD | NEW |