Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(735)

Unified Diff: content/browser/loader/navigation_resource_throttle.cc

Issue 2817033002: Plumb the net::SSLInfo to the browser process when it's using the network service. (Closed)
Patch Set: add net::SSLInfo test Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/loader/navigation_resource_throttle.cc
diff --git a/content/browser/loader/navigation_resource_throttle.cc b/content/browser/loader/navigation_resource_throttle.cc
index a2aa8aaa1227052a63bbc73fb4d391eac96e7c7d..b8787626e829a86be9c43a5583d41c5bfe093eab 100644
--- a/content/browser/loader/navigation_resource_throttle.cc
+++ b/content/browser/loader/navigation_resource_throttle.cc
@@ -311,8 +311,8 @@ void NavigationResourceThrottle::WillProcessResponse(bool* defer) {
SSLStatus ssl_status;
if (request_->ssl_info().cert.get()) {
- NavigationResourceHandler::GetSSLStatusForRequest(
- request_->url(), request_->ssl_info(), info->GetChildID(), &ssl_status);
+ NavigationResourceHandler::GetSSLStatusForRequest(request_->ssl_info(),
+ &ssl_status);
}
BrowserThread::PostTask(
« no previous file with comments | « content/browser/loader/navigation_resource_handler.cc ('k') | content/browser/loader/navigation_url_loader_network_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698