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

Unified Diff: content/browser/appcache/appcache_subresource_url_factory.cc

Issue 2954853002: Use Independent URLLoader
Patch Set: . Created 3 years, 6 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/appcache/appcache_subresource_url_factory.cc
diff --git a/content/browser/appcache/appcache_subresource_url_factory.cc b/content/browser/appcache/appcache_subresource_url_factory.cc
index d90257f3687e7677b5226e9e187ed7d4dd3d13b2..a0977aca34b042bd17f2136afe26f38697b7fa69 100644
--- a/content/browser/appcache/appcache_subresource_url_factory.cc
+++ b/content/browser/appcache/appcache_subresource_url_factory.cc
@@ -48,7 +48,7 @@ AppCacheSubresourceURLFactory::CreateURLLoaderFactory(
}
void AppCacheSubresourceURLFactory::CreateLoaderAndStart(
- mojom::URLLoaderAssociatedRequest url_loader_request,
+ mojom::URLLoaderRequest url_loader_request,
int32_t routing_id,
int32_t request_id,
uint32_t options,
@@ -59,8 +59,8 @@ void AppCacheSubresourceURLFactory::CreateLoaderAndStart(
DLOG(WARNING) << "Received request for loading : " << request.url.spec();
default_url_loader_factory_getter_->GetNetworkFactory()
->get()
- ->CreateLoaderAndStart(mojom::URLLoaderAssociatedRequest(), routing_id,
- request_id, options, request, std::move(client),
+ ->CreateLoaderAndStart(mojom::URLLoaderRequest(), routing_id, request_id,
+ options, request, std::move(client),
traffic_annotation);
}
@@ -75,4 +75,4 @@ void AppCacheSubresourceURLFactory::OnConnectionError() {
base::ThreadTaskRunnerHandle::Get()->DeleteSoon(FROM_HERE, this);
}
-} // namespace content
+} // namespace content
« no previous file with comments | « content/browser/appcache/appcache_subresource_url_factory.h ('k') | content/browser/blob_storage/blob_url_loader_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698