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

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

Issue 2449933003: Use Associated interfaces for mojo-loading (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
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 0d193af1e720ecdb803d26e3cc1ea1b576cf5238..8e06cb23dfc7ccc678d80bfb878b78df310700b7 100644
--- a/content/browser/loader/resource_message_filter.cc
+++ b/content/browser/loader/resource_message_filter.cc
@@ -75,14 +75,14 @@ base::WeakPtr<ResourceMessageFilter> ResourceMessageFilter::GetWeakPtr() {
}
void ResourceMessageFilter::CreateLoaderAndStart(
- mojom::URLLoaderRequest request,
+ mojom::URLLoaderAssociatedRequest request,
int32_t routing_id,
int32_t request_id,
const ResourceRequest& url_request,
- mojom::URLLoaderClientPtr client) {
+ mojom::URLLoaderClientAssociatedPtrInfo client_ptr_info) {
URLLoaderFactoryImpl::CreateLoaderAndStart(std::move(request), routing_id,
request_id, url_request,
- std::move(client), this);
+ std::move(client_ptr_info), this);
}
void ResourceMessageFilter::SyncLoad(int32_t routing_id,

Powered by Google App Engine
This is Rietveld 408576698