| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "+content/browser/resource_context_impl.h", | 160 "+content/browser/resource_context_impl.h", |
| 161 "+content/browser/service_worker/foreign_fetch_request_handler.h", | 161 "+content/browser/service_worker/foreign_fetch_request_handler.h", |
| 162 "+content/browser/service_worker/link_header_support.h", | 162 "+content/browser/service_worker/link_header_support.h", |
| 163 "+content/browser/service_worker/service_worker_context_wrapper.h", | 163 "+content/browser/service_worker/service_worker_context_wrapper.h", |
| 164 "+content/browser/service_worker/service_worker_navigation_handle_core.h", | 164 "+content/browser/service_worker/service_worker_navigation_handle_core.h", |
| 165 "+content/browser/service_worker/service_worker_request_handler.h", | 165 "+content/browser/service_worker/service_worker_request_handler.h", |
| 166 "+content/browser/streams/stream.h", | 166 "+content/browser/streams/stream.h", |
| 167 "+content/browser/streams/stream_context.h", | 167 "+content/browser/streams/stream_context.h", |
| 168 "+content/browser/streams/stream_registry.h", | 168 "+content/browser/streams/stream_registry.h", |
| 169 "+content/common/content_export.h", | 169 "+content/common/content_export.h", |
| 170 "+content/common/net/url_request_devtools_user_data.h", |
| 170 "+content/common/net/url_request_service_worker_data.h", | 171 "+content/common/net/url_request_service_worker_data.h", |
| 171 "+content/public/browser/browser_thread.h", | 172 "+content/public/browser/browser_thread.h", |
| 172 "+content/public/browser/navigation_ui_data.h", | 173 "+content/public/browser/navigation_ui_data.h", |
| 173 "+content/public/browser/plugin_service.h", | 174 "+content/public/browser/plugin_service.h", |
| 174 "+content/public/browser/resource_request_details.h", | 175 "+content/public/browser/resource_request_details.h", |
| 175 "+content/public/browser/stream_handle.h", | 176 "+content/public/browser/stream_handle.h", |
| 176 "+content/public/browser/stream_info.h", | 177 "+content/public/browser/stream_info.h", |
| 177 "+content/public/common/browser_side_navigation_policy.h", | 178 "+content/public/common/browser_side_navigation_policy.h", |
| 178 "+content/public/common/content_features.h", | 179 "+content/public/common/content_features.h", |
| 179 "+content/public/common/content_switches.h", | 180 "+content/public/common/content_switches.h", |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "+content/public/browser/resource_context.h", | 343 "+content/public/browser/resource_context.h", |
| 343 "+content/public/browser/resource_dispatcher_host_delegate.h", | 344 "+content/public/browser/resource_dispatcher_host_delegate.h", |
| 344 "+content/public/common/content_paths.h", | 345 "+content/public/common/content_paths.h", |
| 345 "+content/public/test/test_browser_context.h", | 346 "+content/public/test/test_browser_context.h", |
| 346 "+content/public/test/test_browser_thread_bundle.h", | 347 "+content/public/test/test_browser_thread_bundle.h", |
| 347 | 348 |
| 348 #TODO: To be removed when PlzNavigate lands. | 349 #TODO: To be removed when PlzNavigate lands. |
| 349 "+content/browser/loader/navigation_resource_throttle.h" | 350 "+content/browser/loader/navigation_resource_throttle.h" |
| 350 ], | 351 ], |
| 351 } | 352 } |
| OLD | NEW |