| 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 cf968ce89677066210265786d08a249f6d4d0b84..dc135a911a21b15c8bf36f3dac5a6c993bd9c687 100644
|
| --- a/content/browser/loader/navigation_url_loader_impl_core.cc
|
| +++ b/content/browser/loader/navigation_url_loader_impl_core.cc
|
| @@ -95,13 +95,14 @@ void NavigationURLLoaderImplCore::NotifyResponseStarted(
|
| response->DeepCopy(), base::Passed(&body)));
|
| }
|
|
|
| -void NavigationURLLoaderImplCore::NotifyRequestFailed(int net_error) {
|
| +void NavigationURLLoaderImplCore::NotifyRequestFailed(bool in_cache,
|
| + int net_error) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
|
|
| BrowserThread::PostTask(
|
| BrowserThread::UI, FROM_HERE,
|
| base::Bind(&NavigationURLLoaderImpl::NotifyRequestFailed, loader_,
|
| - net_error));
|
| + in_cache, net_error));
|
| }
|
|
|
| } // namespace content
|
|
|