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 935cf0889a5a5b79f70e128aee6c20a7680ce941..75e636f02359bd18625f86d01a55f38d29422658 100644 |
--- a/content/browser/loader/navigation_url_loader_impl_core.cc |
+++ b/content/browser/loader/navigation_url_loader_impl_core.cc |
@@ -17,6 +17,7 @@ |
#include "content/public/browser/navigation_data.h" |
#include "content/public/browser/stream_handle.h" |
#include "content/public/common/resource_response.h" |
+#include "content/public/common/ssl_status.h" |
#include "net/base/net_errors.h" |
#include "net/url_request/redirect_info.h" |
@@ -110,6 +111,7 @@ void NavigationURLLoaderImplCore::NotifyRequestRedirected( |
void NavigationURLLoaderImplCore::NotifyResponseStarted( |
ResourceResponse* response, |
std::unique_ptr<StreamHandle> body, |
+ const SSLStatus& ssl_status, |
std::unique_ptr<NavigationData> navigation_data) { |
DCHECK_CURRENTLY_ON(BrowserThread::IO); |
TRACE_EVENT_ASYNC_END0("navigation", "Navigation redirectDelay", this); |
@@ -128,7 +130,7 @@ void NavigationURLLoaderImplCore::NotifyResponseStarted( |
BrowserThread::PostTask( |
BrowserThread::UI, FROM_HERE, |
base::Bind(&NavigationURLLoaderImpl::NotifyResponseStarted, loader_, |
- response->DeepCopy(), base::Passed(&body), |
+ response->DeepCopy(), base::Passed(&body), ssl_status, |
base::Passed(&navigation_data))); |
} |