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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
147 "+content/browser/loader/cross_site_resource_handler.h", | 147 "+content/browser/loader/cross_site_resource_handler.h", |
148 "+content/browser/loader/detachable_resource_handler.h", | 148 "+content/browser/loader/detachable_resource_handler.h", |
149 "+content/browser/loader/intercepting_resource_handler.h", | 149 "+content/browser/loader/intercepting_resource_handler.h", |
150 "+content/browser/loader/mime_sniffing_resource_handler.h", | 150 "+content/browser/loader/mime_sniffing_resource_handler.h", |
151 "+content/browser/loader/navigation_resource_handler.h", | 151 "+content/browser/loader/navigation_resource_handler.h", |
152 "+content/browser/loader/navigation_resource_throttle.h", | 152 "+content/browser/loader/navigation_resource_throttle.h", |
153 "+content/browser/loader/navigation_url_loader_impl_core.h", | 153 "+content/browser/loader/navigation_url_loader_impl_core.h", |
154 "+content/browser/loader/redirect_to_file_resource_handler.h", | 154 "+content/browser/loader/redirect_to_file_resource_handler.h", |
155 "+content/browser/loader/upload_data_stream_builder.h", | 155 "+content/browser/loader/upload_data_stream_builder.h", |
156 "+content/browser/resource_context_impl.h", | 156 "+content/browser/resource_context_impl.h", |
157 "+content/browser/resource_request_body_browser_utils.h", | |
Łukasz Anforowicz
2017/05/25 16:11:37
I assume that after decoupling from the rest of //
mmenke
2017/05/25 16:31:08
For better or for worse, the plan is now to make a
Łukasz Anforowicz
2017/05/25 16:50:26
Does that mean that the change to the DEPS file lo
| |
157 "+content/browser/service_worker/foreign_fetch_request_handler.h", | 158 "+content/browser/service_worker/foreign_fetch_request_handler.h", |
158 "+content/browser/service_worker/link_header_support.h", | 159 "+content/browser/service_worker/link_header_support.h", |
159 "+content/browser/service_worker/service_worker_context_wrapper.h", | 160 "+content/browser/service_worker/service_worker_context_wrapper.h", |
160 "+content/browser/service_worker/service_worker_navigation_handle_core.h", | 161 "+content/browser/service_worker/service_worker_navigation_handle_core.h", |
161 "+content/browser/service_worker/service_worker_request_handler.h", | 162 "+content/browser/service_worker/service_worker_request_handler.h", |
162 "+content/browser/streams/stream.h", | 163 "+content/browser/streams/stream.h", |
163 "+content/browser/streams/stream_context.h", | 164 "+content/browser/streams/stream_context.h", |
164 "+content/browser/streams/stream_registry.h", | 165 "+content/browser/streams/stream_registry.h", |
165 "+content/common/content_export.h", | 166 "+content/common/content_export.h", |
166 "+content/common/net/url_request_service_worker_data.h", | 167 "+content/common/net/url_request_service_worker_data.h", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
345 "+content/browser/loader/navigation_resource_throttle.h" | 346 "+content/browser/loader/navigation_resource_throttle.h" |
346 ], | 347 ], |
347 "wake_lock_resource_throttle\.(cc|h)": [ | 348 "wake_lock_resource_throttle\.(cc|h)": [ |
348 "-content", | 349 "-content", |
349 "+content/browser/loader/wake_lock_resource_throttle.h", | 350 "+content/browser/loader/wake_lock_resource_throttle.h", |
350 "+content/browser/service_manager/service_manager_context.h", | 351 "+content/browser/service_manager/service_manager_context.h", |
351 "+content/public/browser/browser_thread.h", | 352 "+content/public/browser/browser_thread.h", |
352 "+content/public/browser/resource_throttle.h", | 353 "+content/public/browser/resource_throttle.h", |
353 ], | 354 ], |
354 } | 355 } |
OLD | NEW |