Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(801)

Side by Side Diff: content/browser/loader/DEPS

Issue 2503813002: Fix and refactor downloaded file handling in the loading stack (Closed)
Patch Set: move to dtor Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/loader/downloaded_temp_file_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/netlog_observer.h", 15 "+content/browser/loader/netlog_observer.h",
15 "+content/browser/loader/resource_buffer.h", 16 "+content/browser/loader/resource_buffer.h",
16 "+content/browser/loader/resource_dispatcher_host_impl.h", 17 "+content/browser/loader/resource_dispatcher_host_impl.h",
17 "+content/browser/loader/resource_handler.h", 18 "+content/browser/loader/resource_handler.h",
18 "+content/browser/loader/resource_message_delegate.h", 19 "+content/browser/loader/resource_message_delegate.h",
19 "+content/browser/loader/resource_message_filter.h", 20 "+content/browser/loader/resource_message_filter.h",
20 "+content/browser/loader/resource_request_info_impl.h", 21 "+content/browser/loader/resource_request_info_impl.h",
21 "+content/common/content_export.h", 22 "+content/common/content_export.h",
22 "+content/public/browser/resource_controller.h", 23 "+content/public/browser/resource_controller.h",
23 "+content/public/browser/resource_dispatcher_host_delegate.h", 24 "+content/public/browser/resource_dispatcher_host_delegate.h",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 "+content/browser/loader/async_revalidation_manager.h", 57 "+content/browser/loader/async_revalidation_manager.h",
57 "+content/browser/loader/resource_message_filter.h", 58 "+content/browser/loader/resource_message_filter.h",
58 "+content/browser/loader/resource_request_info_impl.h", 59 "+content/browser/loader/resource_request_info_impl.h",
59 "+content/browser/loader/resource_scheduler.h", 60 "+content/browser/loader/resource_scheduler.h",
60 "+content/public/browser/resource_throttle.h", 61 "+content/public/browser/resource_throttle.h",
61 62
62 # TODO: To be replaced by mojo. 63 # TODO: To be replaced by mojo.
63 "+content/common/resource_messages.h", 64 "+content/common/resource_messages.h",
64 "+content/common/resource_request.h", 65 "+content/common/resource_request.h",
65 ], 66 ],
67 "downloaded_temp_file_impl\.(cc|h)": [
68 "-content",
69 "+content/browser/loader/downloaded_temp_file_impl.h",
70 "+content/browser/loader/resource_dispatcher_host_impl.h",
71 "+content/common/content_export.h",
72 "+content/common/url_loader_factory.mojom.h"
73 ],
66 "resource_buffer.*\.(cc|h)": [ 74 "resource_buffer.*\.(cc|h)": [
67 "-content", 75 "-content",
68 "+content/browser/loader/resource_buffer.h", 76 "+content/browser/loader/resource_buffer.h",
69 "+content/common/content_export.h", 77 "+content/common/content_export.h",
70 ], 78 ],
71 "global_routing_id\.h": [ 79 "global_routing_id\.h": [
72 "-content", 80 "-content",
73 ], 81 ],
74 "layered_resource_handler\.(cc|h)": [ 82 "layered_resource_handler\.(cc|h)": [
75 "-content", 83 "-content",
76 "+content/browser/loader/layered_resource_handler.h", 84 "+content/browser/loader/layered_resource_handler.h",
77 "+content/browser/loader/resource_handler.h", 85 "+content/browser/loader/resource_handler.h",
78 "+content/common/content_export.h", 86 "+content/common/content_export.h",
79 ], 87 ],
80 "mojo_async_resource_handler\.(cc|h)": [ 88 "mojo_async_resource_handler\.(cc|h)": [
81 "-content", 89 "-content",
82 "+content/browser/loader/async_resource_handler.h", 90 "+content/browser/loader/async_resource_handler.h",
91 "+content/browser/loader/downloaded_temp_file_impl.h",
83 "+content/browser/loader/mojo_async_resource_handler.h", 92 "+content/browser/loader/mojo_async_resource_handler.h",
84 "+content/browser/loader/test_url_loader_client.h", 93 "+content/browser/loader/test_url_loader_client.h",
85 "+content/browser/loader/netlog_observer.h", 94 "+content/browser/loader/netlog_observer.h",
86 "+content/browser/loader/resource_dispatcher_host_impl.h", 95 "+content/browser/loader/resource_dispatcher_host_impl.h",
87 "+content/browser/loader/resource_handler.h", 96 "+content/browser/loader/resource_handler.h",
88 "+content/browser/loader/resource_request_info_impl.h", 97 "+content/browser/loader/resource_request_info_impl.h",
89 "+content/common/content_export.h", 98 "+content/common/content_export.h",
90 "+content/common/resource_request_completion_status.h", 99 "+content/common/resource_request_completion_status.h",
91 "+content/public/browser/global_request_id.h", 100 "+content/public/browser/global_request_id.h",
92 "+content/public/browser/resource_controller.h", 101 "+content/public/browser/resource_controller.h",
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 "+content/public/browser/resource_dispatcher_host_delegate.h", 351 "+content/public/browser/resource_dispatcher_host_delegate.h",
343 "+content/public/common/content_paths.h", 352 "+content/public/common/content_paths.h",
344 "+content/public/common/process_type.h", 353 "+content/public/common/process_type.h",
345 "+content/public/test/test_browser_context.h", 354 "+content/public/test/test_browser_context.h",
346 "+content/public/test/test_browser_thread_bundle.h", 355 "+content/public/test/test_browser_thread_bundle.h",
347 356
348 #TODO: To be removed when PlzNavigate lands. 357 #TODO: To be removed when PlzNavigate lands.
349 "+content/browser/loader/navigation_resource_throttle.h" 358 "+content/browser/loader/navigation_resource_throttle.h"
350 ], 359 ],
351 } 360 }
OLDNEW
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/loader/downloaded_temp_file_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698