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

Unified Diff: content/child/resource_dispatcher.cc

Issue 2390983002: Provide route ID via URLLoaderFactory (Closed)
Patch Set: fix Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/loader/url_loader_factory_impl_unittest.cc ('k') | content/common/url_loader_factory.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/resource_dispatcher.cc
diff --git a/content/child/resource_dispatcher.cc b/content/child/resource_dispatcher.cc
index aa413aeb97706540315d10f869a9a418683dffde..0850e44e4564221888ca63fc37943db3f9432126 100644
--- a/content/child/resource_dispatcher.cc
+++ b/content/child/resource_dispatcher.cc
@@ -664,7 +664,7 @@ int ResourceDispatcher::StartAsync(
new URLLoaderClientImpl(request_id, this, main_thread_task_runner_));
mojom::URLLoaderPtr url_loader;
url_loader_factory->CreateLoaderAndStart(
- GetProxy(&url_loader), request_id, *request,
+ GetProxy(&url_loader), routing_id, request_id, *request,
client->CreateInterfacePtrAndBind());
pending_requests_[request_id]->url_loader = std::move(url_loader);
pending_requests_[request_id]->url_loader_client = std::move(client);
« no previous file with comments | « content/browser/loader/url_loader_factory_impl_unittest.cc ('k') | content/common/url_loader_factory.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698