| 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/downloaded_temp_file_impl.h", | 14     "+content/browser/loader/downloaded_temp_file_impl.h", | 
| 15     "+content/browser/loader/netlog_observer.h", | 15     "+content/browser/loader/netlog_observer.h", | 
| 16     "+content/browser/loader/resource_buffer.h", | 16     "+content/browser/loader/resource_buffer.h", | 
| 17     "+content/browser/loader/resource_dispatcher_host_impl.h", | 17     "+content/browser/loader/resource_dispatcher_host_impl.h", | 
| 18     "+content/browser/loader/resource_handler.h", | 18     "+content/browser/loader/resource_handler.h", | 
| 19     "+content/browser/loader/resource_message_delegate.h", | 19     "+content/browser/loader/resource_message_delegate.h", | 
| 20     "+content/browser/loader/resource_message_filter.h", | 20     "+content/browser/loader/resource_message_filter.h", | 
| 21     "+content/browser/loader/resource_request_info_impl.h", | 21     "+content/browser/loader/resource_request_info_impl.h", | 
|  | 22     "+content/browser/loader/upload_progress_tracker.h", | 
| 22     "+content/common/content_export.h", | 23     "+content/common/content_export.h", | 
| 23     "+content/public/browser/resource_controller.h", | 24     "+content/public/browser/resource_controller.h", | 
| 24     "+content/public/browser/resource_dispatcher_host_delegate.h", | 25     "+content/public/browser/resource_dispatcher_host_delegate.h", | 
| 25     "+content/public/common/resource_response.h", | 26     "+content/public/common/resource_response.h", | 
| 26 | 27 | 
| 27     # TODO: these all have to be removed. | 28     # TODO: these all have to be removed. | 
| 28     "+content/public/common/content_features.h", | 29     "+content/public/common/content_features.h", | 
| 29 | 30 | 
| 30     # TODO: To be replaced by mojo. | 31     # TODO: To be replaced by mojo. | 
| 31     "+content/common/resource_messages.h", | 32     "+content/common/resource_messages.h", | 
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 364     "+content/public/browser/resource_context.h", | 365     "+content/public/browser/resource_context.h", | 
| 365     "+content/public/browser/resource_dispatcher_host_delegate.h", | 366     "+content/public/browser/resource_dispatcher_host_delegate.h", | 
| 366     "+content/public/common/content_paths.h", | 367     "+content/public/common/content_paths.h", | 
| 367     "+content/public/test/test_browser_context.h", | 368     "+content/public/test/test_browser_context.h", | 
| 368     "+content/public/test/test_browser_thread_bundle.h", | 369     "+content/public/test/test_browser_thread_bundle.h", | 
| 369 | 370 | 
| 370     #TODO: To be removed when PlzNavigate lands. | 371     #TODO: To be removed when PlzNavigate lands. | 
| 371     "+content/browser/loader/navigation_resource_throttle.h" | 372     "+content/browser/loader/navigation_resource_throttle.h" | 
| 372   ], | 373   ], | 
| 373 } | 374 } | 
| OLD | NEW | 
|---|