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

Unified Diff: content/browser/loader/resource_message_filter.cc

Issue 2715423003: [Mojo-Loading] Use independent URLLoaderClient (Closed)
Patch Set: fix Created 3 years, 10 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
Index: content/browser/loader/resource_message_filter.cc
diff --git a/content/browser/loader/resource_message_filter.cc b/content/browser/loader/resource_message_filter.cc
index b70e281bc733ee2dd1cdaea4ee03222639873e38..d437a15e1b1f04a3737835e0840f77ff7a621442 100644
--- a/content/browser/loader/resource_message_filter.cc
+++ b/content/browser/loader/resource_message_filter.cc
@@ -86,10 +86,10 @@ void ResourceMessageFilter::CreateLoaderAndStart(
int32_t routing_id,
int32_t request_id,
const ResourceRequest& url_request,
- mojom::URLLoaderClientAssociatedPtrInfo client_ptr_info) {
+ mojom::URLLoaderClientPtr client) {
URLLoaderFactoryImpl::CreateLoaderAndStart(
requester_info_.get(), std::move(request), routing_id, request_id,
- url_request, std::move(client_ptr_info));
+ url_request, std::move(client));
}
void ResourceMessageFilter::SyncLoad(int32_t routing_id,

Powered by Google App Engine
This is Rietveld 408576698