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

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

Issue 2496193002: Implement transfer navigation with mojo (Closed)
Patch Set: fix Created 4 years, 1 month 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 ], 216 ],
217 "resource_loader\.(cc|h)": [ 217 "resource_loader\.(cc|h)": [
218 "-content", 218 "-content",
219 "+content/browser/loader/resource_handler.h", 219 "+content/browser/loader/resource_handler.h",
220 "+content/browser/loader/resource_loader.h", 220 "+content/browser/loader/resource_loader.h",
221 "+content/browser/loader/resource_loader_delegate.h", 221 "+content/browser/loader/resource_loader_delegate.h",
222 "+content/browser/loader/resource_request_info_impl.h", 222 "+content/browser/loader/resource_request_info_impl.h",
223 "+content/browser/ssl/ssl_client_auth_handler.h", 223 "+content/browser/ssl/ssl_client_auth_handler.h",
224 "+content/browser/ssl/ssl_error_handler.h", 224 "+content/browser/ssl/ssl_error_handler.h",
225 "+content/common/content_export.h", 225 "+content/common/content_export.h",
226 "+content/common/url_loader.mojom.h",
226 "+content/public/browser/resource_controller.h", 227 "+content/public/browser/resource_controller.h",
227 "+content/public/browser/resource_dispatcher_host_login_delegate.h", 228 "+content/public/browser/resource_dispatcher_host_login_delegate.h",
228 "+content/public/common/browser_side_navigation_policy.h", 229 "+content/public/common/browser_side_navigation_policy.h",
229 "+content/public/common/resource_response.h", 230 "+content/public/common/resource_response.h",
230 "+content/public/common/resource_type.h", 231 "+content/public/common/resource_type.h",
231 232
232 # TODO: these all have to be removed. 233 # TODO: these all have to be removed.
233 "+content/browser/appcache/appcache_interceptor.h", 234 "+content/browser/appcache/appcache_interceptor.h",
234 "+content/browser/child_process_security_policy_impl.h", 235 "+content/browser/child_process_security_policy_impl.h",
235 "+content/browser/loader/cross_site_resource_handler.h", 236 "+content/browser/loader/cross_site_resource_handler.h",
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 "+content/public/browser/resource_dispatcher_host_delegate.h", 343 "+content/public/browser/resource_dispatcher_host_delegate.h",
343 "+content/public/common/content_paths.h", 344 "+content/public/common/content_paths.h",
344 "+content/public/common/process_type.h", 345 "+content/public/common/process_type.h",
345 "+content/public/test/test_browser_context.h", 346 "+content/public/test/test_browser_context.h",
346 "+content/public/test/test_browser_thread_bundle.h", 347 "+content/public/test/test_browser_thread_bundle.h",
347 348
348 #TODO: To be removed when PlzNavigate lands. 349 #TODO: To be removed when PlzNavigate lands.
349 "+content/browser/loader/navigation_resource_throttle.h" 350 "+content/browser/loader/navigation_resource_throttle.h"
350 ], 351 ],
351 } 352 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698