Chromium Code Reviews| 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 = { |
| 11 "async_resource_handler\.(cc|h)": [ | 11 "async_resource_handler\.(cc|h)": [ |
| 12 "-content", | 12 "-content", |
| 13 "+content/browser/loader/async_resource_handler.h", | 13 "+content/browser/loader/async_resource_handler.h", |
| 14 "+content/browser/loader/downloaded_temp_file_impl.h", | 14 "+content/browser/loader/downloaded_temp_file_impl.h", |
| 15 "+content/browser/loader/netlog_observer.h", | 15 "+content/browser/loader/netlog_observer.h", |
| 16 "+content/browser/loader/resource_buffer.h", | 16 "+content/browser/loader/resource_buffer.h", |
| 17 "+content/browser/loader/resource_controller.h", | 17 "+content/browser/loader/resource_controller.h", |
| 18 "+content/browser/loader/resource_dispatcher_host_impl.h", | 18 "+content/browser/loader/resource_dispatcher_host_impl.h", |
| 19 "+content/browser/loader/resource_handler.h", | 19 "+content/browser/loader/resource_handler.h", |
| 20 "+content/browser/loader/resource_message_delegate.h", | 20 "+content/browser/loader/resource_message_delegate.h", |
| 21 "+content/browser/loader/resource_message_filter.h", | 21 "+content/browser/loader/resource_message_filter.h", |
| 22 "+content/browser/loader/resource_request_info_impl.h", | 22 "+content/browser/loader/resource_request_info_impl.h", |
| 23 "+content/browser/loader/upload_progress_tracker.h", | |
|
mmenke
2016/12/08 15:37:08
Need to add deps entry for upload_progress_tracker
tzik
2016/12/12 07:28:50
Done.
| |
| 23 "+content/common/content_export.h", | 24 "+content/common/content_export.h", |
| 24 "+content/public/browser/resource_dispatcher_host_delegate.h", | 25 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 25 "+content/public/common/resource_response.h", | 26 "+content/public/common/resource_response.h", |
| 26 | 27 |
| 27 # TODO: these all have to be removed. | 28 # TODO: these all have to be removed. |
| 28 "+content/public/common/content_features.h", | 29 "+content/public/common/content_features.h", |
| 29 | 30 |
| 30 # TODO: To be replaced by mojo. | 31 # TODO: To be replaced by mojo. |
| 31 "+content/common/resource_messages.h", | 32 "+content/common/resource_messages.h", |
| 32 "+content/common/resource_request_completion_status.h", | 33 "+content/common/resource_request_completion_status.h", |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 363 "+content/public/browser/resource_context.h", | 364 "+content/public/browser/resource_context.h", |
| 364 "+content/public/browser/resource_dispatcher_host_delegate.h", | 365 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 365 "+content/public/common/content_paths.h", | 366 "+content/public/common/content_paths.h", |
| 366 "+content/public/test/test_browser_context.h", | 367 "+content/public/test/test_browser_context.h", |
| 367 "+content/public/test/test_browser_thread_bundle.h", | 368 "+content/public/test/test_browser_thread_bundle.h", |
| 368 | 369 |
| 369 #TODO: To be removed when PlzNavigate lands. | 370 #TODO: To be removed when PlzNavigate lands. |
| 370 "+content/browser/loader/navigation_resource_throttle.h" | 371 "+content/browser/loader/navigation_resource_throttle.h" |
| 371 ], | 372 ], |
| 372 } | 373 } |
| OLD | NEW |