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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 "+content/browser/loader/cross_site_resource_handler.h", | 234 "+content/browser/loader/cross_site_resource_handler.h", |
235 "+content/browser/loader/detachable_resource_handler.h", | 235 "+content/browser/loader/detachable_resource_handler.h", |
236 "+content/browser/service_worker/service_worker_request_handler.h", | 236 "+content/browser/service_worker/service_worker_request_handler.h", |
237 "+content/browser/service_worker/service_worker_response_info.h", | 237 "+content/browser/service_worker/service_worker_response_info.h", |
238 "+content/browser/ssl/ssl_manager.h", | 238 "+content/browser/ssl/ssl_manager.h", |
239 "+content/browser/ssl/ssl_policy.h", | 239 "+content/browser/ssl/ssl_policy.h", |
240 "+content/public/common/content_client.h", | 240 "+content/public/common/content_client.h", |
241 "+content/public/common/content_switches.h", | 241 "+content/public/common/content_switches.h", |
242 "+content/public/common/process_type.h", | 242 "+content/public/common/process_type.h", |
243 "+content/public/common/security_style.h", | 243 "+content/public/common/security_style.h", |
| 244 |
| 245 |
| 246 # temp for try run |
| 247 "+content/browser/frame_host/frame_tree.h", |
| 248 "+content/browser/frame_host/frame_tree_node.h", |
| 249 "+content/browser/frame_host/render_frame_host_impl.h", |
| 250 "+content/browser/frame_host/render_frame_host_manager.h", |
| 251 "+content/browser/web_contents/web_contents_impl.h", |
| 252 "+content/public/browser/navigation_controller.h", |
| 253 "+content/public/browser/navigation_entry.h", |
244 ], | 254 ], |
245 "resource_handler_delegate\.h": [ | 255 "resource_handler_delegate\.h": [ |
246 "-content", | 256 "-content", |
247 ], | 257 ], |
248 "resource_request_info_impl\.(cc|h)": [ | 258 "resource_request_info_impl\.(cc|h)": [ |
249 "-content", | 259 "-content", |
250 "+content/browser/loader/global_routing_id.h", | 260 "+content/browser/loader/global_routing_id.h", |
251 "+content/browser/loader/resource_handler.h", | 261 "+content/browser/loader/resource_handler.h", |
252 "+content/browser/loader/resource_message_filter.h", | 262 "+content/browser/loader/resource_message_filter.h", |
253 "+content/browser/loader/resource_request_info_impl.h", | 263 "+content/browser/loader/resource_request_info_impl.h", |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 "+content/common/resource_request_completion_status.h", | 345 "+content/common/resource_request_completion_status.h", |
336 "+content/common/url_loader.mojom.h", | 346 "+content/common/url_loader.mojom.h", |
337 "+content/common/url_loader_factory.mojom.h", | 347 "+content/common/url_loader_factory.mojom.h", |
338 "+content/public/browser/resource_context.h", | 348 "+content/public/browser/resource_context.h", |
339 "+content/public/browser/resource_dispatcher_host_delegate.h", | 349 "+content/public/browser/resource_dispatcher_host_delegate.h", |
340 "+content/public/common/content_paths.h", | 350 "+content/public/common/content_paths.h", |
341 "+content/public/test/test_browser_context.h", | 351 "+content/public/test/test_browser_context.h", |
342 "+content/public/test/test_browser_thread_bundle.h", | 352 "+content/public/test/test_browser_thread_bundle.h", |
343 ], | 353 ], |
344 } | 354 } |
OLD | NEW |