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 = { |
11 "async_resource_handler\.(cc|h)": [ | 11 "async_resource_handler\.(cc|h)": [ |
12 "-content", | 12 "-content", |
13 "+content/browser/loader/async_resource_handler.h", | 13 "+content/browser/loader/async_resource_handler.h", |
14 "+content/browser/loader/netlog_observer.h", | 14 "+content/browser/loader/netlog_observer.h", |
15 "+content/browser/loader/resource_buffer.h", | 15 "+content/browser/loader/resource_buffer.h", |
16 "+content/browser/loader/resource_dispatcher_host_impl.h", | 16 "+content/browser/loader/resource_dispatcher_host_impl.h", |
17 "+content/browser/loader/resource_handler.h", | 17 "+content/browser/loader/resource_handler.h", |
18 "+content/browser/loader/resource_message_delegate.h", | 18 "+content/browser/loader/resource_message_delegate.h", |
19 "+content/browser/loader/resource_message_filter.h", | 19 "+content/browser/loader/resource_message_filter.h", |
20 "+content/browser/loader/resource_request_info_impl.h", | 20 "+content/browser/loader/resource_request_info_impl.h", |
21 "+content/common/content_export.h", | 21 "+content/common/content_export.h", |
22 "+content/public/browser/resource_dispatcher_host_delegate.h", | 22 "+content/public/browser/resource_dispatcher_host_delegate.h", |
23 "+content/public/common/resource_response.h", | 23 "+content/public/common/resource_response.h", |
24 | 24 |
25 # TODO: these all have to be removed. | 25 # TODO: these all have to be removed. |
26 "+content/browser/host_zoom_map_impl.h", | |
27 "+content/public/common/content_features.h", | 26 "+content/public/common/content_features.h", |
28 | 27 |
29 # TODO: To be replaced by mojo. | 28 # TODO: To be replaced by mojo. |
30 "+content/common/resource_messages.h", | 29 "+content/common/resource_messages.h", |
31 "+content/common/resource_request_completion_status.h", | 30 "+content/common/resource_request_completion_status.h", |
32 "+content/common/view_messages.h", | 31 "+content/common/view_messages.h", |
33 ], | 32 ], |
34 "async_revalidation_driver\.(cc|h)": [ | 33 "async_revalidation_driver\.(cc|h)": [ |
35 "-content", | 34 "-content", |
36 "+content/browser/loader/async_revalidation_driver.h", | 35 "+content/browser/loader/async_revalidation_driver.h", |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 "+content/browser/loader/sync_resource_handler.h", | 260 "+content/browser/loader/sync_resource_handler.h", |
262 "+content/public/browser/resource_dispatcher_host_delegate.h", | 261 "+content/public/browser/resource_dispatcher_host_delegate.h", |
263 "+content/public/browser/resource_request_info.h", | 262 "+content/public/browser/resource_request_info.h", |
264 "+content/public/common/resource_response.h", | 263 "+content/public/common/resource_response.h", |
265 | 264 |
266 | 265 |
267 # TODO: To be replaced by mojo. | 266 # TODO: To be replaced by mojo. |
268 "+content/common/resource_messages.h", | 267 "+content/common/resource_messages.h", |
269 ], | 268 ], |
270 } | 269 } |
OLD | NEW |