Index: content/browser/loader/navigation_url_loader_impl.cc |
diff --git a/content/browser/loader/navigation_url_loader_impl.cc b/content/browser/loader/navigation_url_loader_impl.cc |
index 658c4dc775f24983f762d2a4b318a3d442b0b918..4082489fea1cb2d91e5b6267107e6e9b92a8ded1 100644 |
--- a/content/browser/loader/navigation_url_loader_impl.cc |
+++ b/content/browser/loader/navigation_url_loader_impl.cc |
@@ -64,10 +64,11 @@ void NavigationURLLoaderImpl::NotifyResponseStarted( |
delegate_->OnResponseStarted(response, body.Pass()); |
} |
-void NavigationURLLoaderImpl::NotifyRequestFailed(int net_error) { |
+void NavigationURLLoaderImpl::NotifyRequestFailed(bool in_cache, |
+ int net_error) { |
DCHECK_CURRENTLY_ON(BrowserThread::UI); |
- delegate_->OnRequestFailed(net_error); |
+ delegate_->OnRequestFailed(in_cache, net_error); |
} |
void NavigationURLLoaderImpl::NotifyRequestStarted(base::TimeTicks timestamp) { |