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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 "+content/browser/loader/cross_site_resource_handler.h", | 195 "+content/browser/loader/cross_site_resource_handler.h", |
196 "+content/browser/loader/detachable_resource_handler.h", | 196 "+content/browser/loader/detachable_resource_handler.h", |
197 "+content/browser/service_worker/service_worker_request_handler.h", | 197 "+content/browser/service_worker/service_worker_request_handler.h", |
198 "+content/browser/service_worker/service_worker_response_info.h", | 198 "+content/browser/service_worker/service_worker_response_info.h", |
199 "+content/browser/ssl/ssl_manager.h", | 199 "+content/browser/ssl/ssl_manager.h", |
200 "+content/browser/ssl/ssl_policy.h", | 200 "+content/browser/ssl/ssl_policy.h", |
201 "+content/public/common/content_client.h", | 201 "+content/public/common/content_client.h", |
202 "+content/public/common/content_switches.h", | 202 "+content/public/common/content_switches.h", |
203 "+content/public/common/process_type.h", | 203 "+content/public/common/process_type.h", |
204 "+content/public/common/security_style.h", | 204 "+content/public/common/security_style.h", |
| 205 |
| 206 |
| 207 # temp for try run |
| 208 "+content/browser/frame_host/frame_tree.h", |
| 209 "+content/browser/frame_host/frame_tree_node.h", |
| 210 "+content/browser/frame_host/render_frame_host_impl.h", |
| 211 "+content/browser/frame_host/render_frame_host_manager.h", |
| 212 "+content/browser/web_contents/web_contents_impl.h", |
| 213 "+content/public/browser/navigation_controller.h", |
| 214 "+content/public/browser/navigation_entry.h", |
205 ], | 215 ], |
206 "resource_handler_delegate\.h": [ | 216 "resource_handler_delegate\.h": [ |
207 "-content", | 217 "-content", |
208 ], | 218 ], |
209 "resource_request_info_impl\.(cc|h)": [ | 219 "resource_request_info_impl\.(cc|h)": [ |
210 "-content", | 220 "-content", |
211 "+content/browser/loader/global_routing_id.h", | 221 "+content/browser/loader/global_routing_id.h", |
212 "+content/browser/loader/resource_handler.h", | 222 "+content/browser/loader/resource_handler.h", |
213 "+content/browser/loader/resource_message_filter.h", | 223 "+content/browser/loader/resource_message_filter.h", |
214 "+content/browser/loader/resource_request_info_impl.h", | 224 "+content/browser/loader/resource_request_info_impl.h", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 "+content/browser/loader/sync_resource_handler.h", | 270 "+content/browser/loader/sync_resource_handler.h", |
261 "+content/public/browser/resource_dispatcher_host_delegate.h", | 271 "+content/public/browser/resource_dispatcher_host_delegate.h", |
262 "+content/public/browser/resource_request_info.h", | 272 "+content/public/browser/resource_request_info.h", |
263 "+content/public/common/resource_response.h", | 273 "+content/public/common/resource_response.h", |
264 | 274 |
265 | 275 |
266 # TODO: To be replaced by mojo. | 276 # TODO: To be replaced by mojo. |
267 "+content/common/resource_messages.h", | 277 "+content/common/resource_messages.h", |
268 ], | 278 ], |
269 } | 279 } |
OLD | NEW |