| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  301  |  301  | 
|  302  |  302  | 
|  303     # TODO: To be replaced by mojo. |  303     # TODO: To be replaced by mojo. | 
|  304     "+content/common/resource_messages.h", |  304     "+content/common/resource_messages.h", | 
|  305   ], |  305   ], | 
|  306   "test_url_loader_client\.(cc|h)": [ |  306   "test_url_loader_client\.(cc|h)": [ | 
|  307     "-content", |  307     "-content", | 
|  308     "+content/browser/loader/test_url_loader_client.h", |  308     "+content/browser/loader/test_url_loader_client.h", | 
|  309     "+content/common/resource_request_completion_status.h", |  309     "+content/common/resource_request_completion_status.h", | 
|  310     "+content/common/url_loader.mojom.h", |  310     "+content/common/url_loader.mojom.h", | 
 |  311     "+content/common/url_loader_factory.mojom.h", | 
|  311     "+content/public/common/resource_response.h", |  312     "+content/public/common/resource_response.h", | 
|  312   ], |  313   ], | 
|  313   "url_loader_factory_impl\.(cc|h)": [ |  314   "url_loader_factory_impl\.(cc|h)": [ | 
|  314     "-content", |  315     "-content", | 
|  315     "+content/browser/loader/resource_dispatcher_host_impl.h", |  316     "+content/browser/loader/resource_dispatcher_host_impl.h", | 
|  316     "+content/browser/loader/resource_message_filter.h", |  317     "+content/browser/loader/resource_message_filter.h", | 
|  317     "+content/browser/loader/url_loader_factory_impl.h", |  318     "+content/browser/loader/url_loader_factory_impl.h", | 
|  318     "+content/common/content_export.h", |  319     "+content/common/content_export.h", | 
|  319     "+content/common/resource_request.h", |  320     "+content/common/resource_request.h", | 
|  320     "+content/common/url_loader.mojom.h", |  321     "+content/common/url_loader.mojom.h", | 
| (...skipping 17 matching lines...) Expand all  Loading... | 
|  338     "+content/public/browser/resource_dispatcher_host_delegate.h", |  339     "+content/public/browser/resource_dispatcher_host_delegate.h", | 
|  339     "+content/public/common/content_paths.h", |  340     "+content/public/common/content_paths.h", | 
|  340     "+content/public/common/process_type.h", |  341     "+content/public/common/process_type.h", | 
|  341     "+content/public/test/test_browser_context.h", |  342     "+content/public/test/test_browser_context.h", | 
|  342     "+content/public/test/test_browser_thread_bundle.h", |  343     "+content/public/test/test_browser_thread_bundle.h", | 
|  343  |  344  | 
|  344     #TODO: To be removed when PlzNavigate lands. |  345     #TODO: To be removed when PlzNavigate lands. | 
|  345     "+content/browser/loader/navigation_resource_throttle.h" |  346     "+content/browser/loader/navigation_resource_throttle.h" | 
|  346   ], |  347   ], | 
|  347 } |  348 } | 
| OLD | NEW |