| 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
|
|
|