| 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 bd7ef98f8eaaf69fc862f0ae36eed0ed7c2ea8c2..f6fce38dd803556961f7f062af9470bf7e275919 100644
|
| --- a/content/browser/loader/navigation_url_loader_impl_core.cc
|
| +++ b/content/browser/loader/navigation_url_loader_impl_core.cc
|
| @@ -87,7 +87,8 @@ void NavigationURLLoaderImplCore::NotifyRequestRedirected(
|
|
|
| void NavigationURLLoaderImplCore::NotifyResponseStarted(
|
| ResourceResponse* response,
|
| - scoped_ptr<StreamHandle> body) {
|
| + mojo::ScopedDataPipeConsumerHandle data_consumer_handle,
|
| + int request_id) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| TRACE_EVENT_ASYNC_END0("navigation", "Navigation redirectDelay", this);
|
| TRACE_EVENT_ASYNC_END2("navigation", "Navigation timeToResponseStarted", this,
|
| @@ -105,7 +106,8 @@ void NavigationURLLoaderImplCore::NotifyResponseStarted(
|
| BrowserThread::PostTask(
|
| BrowserThread::UI, FROM_HERE,
|
| base::Bind(&NavigationURLLoaderImpl::NotifyResponseStarted, loader_,
|
| - response->DeepCopy(), base::Passed(&body)));
|
| + response->DeepCopy(), base::Passed(&data_consumer_handle),
|
| + request_id));
|
| }
|
|
|
| void NavigationURLLoaderImplCore::NotifyRequestFailed(bool in_cache,
|
|
|