| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "+content/public/browser/browser_thread.h", # Only for DCHECK. | 88 "+content/public/browser/browser_thread.h", # Only for DCHECK. |
| 89 "+content/public/browser/content_browser_client.h", # To get NetLog. | 89 "+content/public/browser/content_browser_client.h", # To get NetLog. |
| 90 "+content/public/common/resource_devtools_info.h", | 90 "+content/public/common/resource_devtools_info.h", |
| 91 ], | 91 ], |
| 92 "power_save_block_resource_throttle\.(cc|h)": [ | 92 "power_save_block_resource_throttle\.(cc|h)": [ |
| 93 "-content", | 93 "-content", |
| 94 "+content/browser/loader/power_save_block_resource_throttle.h", | 94 "+content/browser/loader/power_save_block_resource_throttle.h", |
| 95 "+content/public/browser/resource_throttle.h", | 95 "+content/public/browser/resource_throttle.h", |
| 96 | 96 |
| 97 # TODO: these all have to be removed. | 97 # TODO: these all have to be removed. |
| 98 "+content/public/browser/power_save_blocker.h", | 98 "+content/public/browser/power_save_blocker_factory.h", |
| 99 ], | 99 ], |
| 100 "resource_dispatcher_host_impl\.(cc|h)": [ | 100 "resource_dispatcher_host_impl\.(cc|h)": [ |
| 101 "-content", | 101 "-content", |
| 102 "+content/browser/loader/async_resource_handler.h", | 102 "+content/browser/loader/async_resource_handler.h", |
| 103 "+content/browser/loader/async_revalidation_manager.h", | 103 "+content/browser/loader/async_revalidation_manager.h", |
| 104 "+content/browser/loader/global_routing_id.h", | 104 "+content/browser/loader/global_routing_id.h", |
| 105 "+content/browser/loader/power_save_block_resource_throttle.h", | 105 "+content/browser/loader/power_save_block_resource_throttle.h", |
| 106 "+content/browser/loader/resource_dispatcher_host_impl.h", | 106 "+content/browser/loader/resource_dispatcher_host_impl.h", |
| 107 "+content/browser/loader/resource_loader.h", | 107 "+content/browser/loader/resource_loader.h", |
| 108 "+content/browser/loader/resource_loader_delegate.h", | 108 "+content/browser/loader/resource_loader_delegate.h", |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 "+content/browser/loader/sync_resource_handler.h", | 275 "+content/browser/loader/sync_resource_handler.h", |
| 276 "+content/public/browser/resource_dispatcher_host_delegate.h", | 276 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 277 "+content/public/browser/resource_request_info.h", | 277 "+content/public/browser/resource_request_info.h", |
| 278 "+content/public/common/resource_response.h", | 278 "+content/public/common/resource_response.h", |
| 279 | 279 |
| 280 | 280 |
| 281 # TODO: To be replaced by mojo. | 281 # TODO: To be replaced by mojo. |
| 282 "+content/common/resource_messages.h", | 282 "+content/common/resource_messages.h", |
| 283 ], | 283 ], |
| 284 } | 284 } |
| OLD | NEW |