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