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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 "+content/browser/loader/navigation_url_loader_impl_core.h", | 138 "+content/browser/loader/navigation_url_loader_impl_core.h", |
139 "+content/browser/loader/redirect_to_file_resource_handler.h", | 139 "+content/browser/loader/redirect_to_file_resource_handler.h", |
140 "+content/browser/loader/upload_data_stream_builder.h", | 140 "+content/browser/loader/upload_data_stream_builder.h", |
141 "+content/browser/resource_context_impl.h", | 141 "+content/browser/resource_context_impl.h", |
142 "+content/browser/service_worker/foreign_fetch_request_handler.h", | 142 "+content/browser/service_worker/foreign_fetch_request_handler.h", |
143 "+content/browser/service_worker/link_header_support.h", | 143 "+content/browser/service_worker/link_header_support.h", |
144 "+content/browser/service_worker/service_worker_request_handler.h", | 144 "+content/browser/service_worker/service_worker_request_handler.h", |
145 "+content/browser/streams/stream.h", | 145 "+content/browser/streams/stream.h", |
146 "+content/browser/streams/stream_context.h", | 146 "+content/browser/streams/stream_context.h", |
147 "+content/browser/streams/stream_registry.h", | 147 "+content/browser/streams/stream_registry.h", |
148 "+content/browser/web_contents/web_contents_impl.h", | |
149 "+content/common/content_export.h", | 148 "+content/common/content_export.h", |
150 "+content/common/navigation_params.h", | 149 "+content/common/navigation_params.h", |
151 "+content/common/net/url_request_service_worker_data.h", | 150 "+content/common/net/url_request_service_worker_data.h", |
152 "+content/common/site_isolation_policy.h", | 151 "+content/common/site_isolation_policy.h", |
153 "+content/public/browser/browser_thread.h", | 152 "+content/public/browser/browser_thread.h", |
154 "+content/public/browser/content_browser_client.h", | 153 "+content/public/browser/content_browser_client.h", |
155 "+content/public/browser/notification_types.h", | 154 "+content/public/browser/notification_types.h", |
156 "+content/public/browser/plugin_service.h", | 155 "+content/public/browser/plugin_service.h", |
157 "+content/public/browser/resource_request_details.h", | 156 "+content/public/browser/resource_request_details.h", |
158 "+content/public/browser/stream_handle.h", | 157 "+content/public/browser/stream_handle.h", |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 "+content/browser/loader/sync_resource_handler.h", | 264 "+content/browser/loader/sync_resource_handler.h", |
266 "+content/public/browser/resource_dispatcher_host_delegate.h", | 265 "+content/public/browser/resource_dispatcher_host_delegate.h", |
267 "+content/public/browser/resource_request_info.h", | 266 "+content/public/browser/resource_request_info.h", |
268 "+content/public/common/resource_response.h", | 267 "+content/public/common/resource_response.h", |
269 | 268 |
270 | 269 |
271 # TODO: To be replaced by mojo. | 270 # TODO: To be replaced by mojo. |
272 "+content/common/resource_messages.h", | 271 "+content/common/resource_messages.h", |
273 ], | 272 ], |
274 } | 273 } |
OLD | NEW |