| Index: content/browser/loader/navigation_url_loader_impl_core.cc
|
| diff --git a/content/browser/loader/navigation_url_loader_impl_core.cc b/content/browser/loader/navigation_url_loader_impl_core.cc
|
| index 29631fb7907edc3d6a3694761427d21b32b9812d..6fe717e77ca0e94422012ec5dc6e2989bb40e0a8 100644
|
| --- a/content/browser/loader/navigation_url_loader_impl_core.cc
|
| +++ b/content/browser/loader/navigation_url_loader_impl_core.cc
|
| @@ -103,7 +103,7 @@ void NavigationURLLoaderImplCore::NotifyRequestRedirected(
|
|
|
| void NavigationURLLoaderImplCore::NotifyResponseStarted(
|
| ResourceResponse* response,
|
| - std::unique_ptr<StreamHandle> body,
|
| + mojo::ScopedDataPipeConsumerHandle consumer_handle,
|
| const SSLStatus& ssl_status,
|
| std::unique_ptr<NavigationData> navigation_data,
|
| const GlobalRequestID& request_id,
|
| @@ -126,9 +126,9 @@ void NavigationURLLoaderImplCore::NotifyResponseStarted(
|
| BrowserThread::PostTask(
|
| BrowserThread::UI, FROM_HERE,
|
| base::Bind(&NavigationURLLoaderImpl::NotifyResponseStarted, loader_,
|
| - response->DeepCopy(), base::Passed(&body), ssl_status,
|
| - base::Passed(&navigation_data), request_id, is_download,
|
| - is_stream));
|
| + response->DeepCopy(), base::Passed(std::move(consumer_handle)),
|
| + ssl_status, base::Passed(&navigation_data), request_id,
|
| + is_download, is_stream));
|
| }
|
|
|
| void NavigationURLLoaderImplCore::NotifyRequestFailed(bool in_cache,
|
|
|