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

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

Issue 2574143003: Implement upload progress handling in Mojo loading (Closed)
Patch Set: +content_browsertests Created 3 years, 11 months 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
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 = {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "-content", 82 "-content",
83 "+content/browser/loader/layered_resource_handler.h", 83 "+content/browser/loader/layered_resource_handler.h",
84 "+content/browser/loader/resource_handler.h", 84 "+content/browser/loader/resource_handler.h",
85 "+content/common/content_export.h", 85 "+content/common/content_export.h",
86 ], 86 ],
87 "mojo_async_resource_handler\.(cc|h)": [ 87 "mojo_async_resource_handler\.(cc|h)": [
88 "-content", 88 "-content",
89 "+content/browser/loader/async_resource_handler.h", 89 "+content/browser/loader/async_resource_handler.h",
90 "+content/browser/loader/downloaded_temp_file_impl.h", 90 "+content/browser/loader/downloaded_temp_file_impl.h",
91 "+content/browser/loader/mojo_async_resource_handler.h", 91 "+content/browser/loader/mojo_async_resource_handler.h",
92 "+content/browser/loader/test_url_loader_client.h",
93 "+content/browser/loader/netlog_observer.h", 92 "+content/browser/loader/netlog_observer.h",
94 "+content/browser/loader/resource_controller.h", 93 "+content/browser/loader/resource_controller.h",
95 "+content/browser/loader/resource_dispatcher_host_impl.h", 94 "+content/browser/loader/resource_dispatcher_host_impl.h",
96 "+content/browser/loader/resource_handler.h", 95 "+content/browser/loader/resource_handler.h",
97 "+content/browser/loader/resource_request_info_impl.h", 96 "+content/browser/loader/resource_request_info_impl.h",
97 "+content/browser/loader/upload_progress_tracker.h",
98 "+content/common/content_export.h", 98 "+content/common/content_export.h",
99 "+content/common/resource_request_completion_status.h", 99 "+content/common/resource_request_completion_status.h",
100 "+content/common/url_loader.mojom.h",
100 "+content/public/browser/global_request_id.h", 101 "+content/public/browser/global_request_id.h",
101 "+content/public/browser/resource_dispatcher_host_delegate.h", 102 "+content/public/browser/resource_dispatcher_host_delegate.h",
102 "+content/public/common/resource_response.h", 103 "+content/public/common/resource_response.h",
103 "+content/common/url_loader.mojom.h",
104 ], 104 ],
105 "mojo_async_resource_handler_unittest\.cc": [ 105 "mojo_async_resource_handler_unittest\.cc": [
106 "-content", 106 "-content",
107 "+content/browser/loader/mock_resource_loader.h", 107 "+content/browser/loader/mock_resource_loader.h",
108 "+content/browser/loader/mojo_async_resource_handler.h", 108 "+content/browser/loader/mojo_async_resource_handler.h",
109 "+content/browser/loader/test_url_loader_client.h", 109 "+content/browser/loader/test_url_loader_client.h",
110 "+content/browser/loader/resource_controller.h", 110 "+content/browser/loader/resource_controller.h",
111 "+content/browser/loader/resource_dispatcher_host_impl.h", 111 "+content/browser/loader/resource_dispatcher_host_impl.h",
112 "+content/browser/loader/resource_request_info_impl.h", 112 "+content/browser/loader/resource_request_info_impl.h",
113 "+content/common/resource_request.h", 113 "+content/common/resource_request.h",
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 "+content/public/browser/resource_context.h", 375 "+content/public/browser/resource_context.h",
376 "+content/public/browser/resource_dispatcher_host_delegate.h", 376 "+content/public/browser/resource_dispatcher_host_delegate.h",
377 "+content/public/common/content_paths.h", 377 "+content/public/common/content_paths.h",
378 "+content/public/test/test_browser_context.h", 378 "+content/public/test/test_browser_context.h",
379 "+content/public/test/test_browser_thread_bundle.h", 379 "+content/public/test/test_browser_thread_bundle.h",
380 380
381 #TODO: To be removed when PlzNavigate lands. 381 #TODO: To be removed when PlzNavigate lands.
382 "+content/browser/loader/navigation_resource_throttle.h" 382 "+content/browser/loader/navigation_resource_throttle.h"
383 ], 383 ],
384 } 384 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698