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

Unified Diff: chrome/browser/ssl/ssl_manager.cc

Issue 4210004: We should use SSLInfo or related types for HTTPS... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Remove cert_store.cc Created 10 years, 2 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: chrome/browser/ssl/ssl_manager.cc
===================================================================
--- chrome/browser/ssl/ssl_manager.cc (revision 64489)
+++ chrome/browser/ssl/ssl_manager.cc (working copy)
@@ -79,8 +79,9 @@
if (state.empty()) {
// No SSL used.
*cert_id = 0;
+ // The following are not applicable and are set to the default values.
*cert_status = 0;
- *security_bits = 0; // Not encrypted.
+ *security_bits = -1;
*ssl_connection_status = 0;
return false;
}

Powered by Google App Engine
This is Rietveld 408576698