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

Unified Diff: content/browser/devtools/protocol/security_handler.cc

Issue 1301833002: Switch security handler to use "neutral" security state instead of "http". (3/4) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/protocol/security_handler.cc
diff --git a/content/browser/devtools/protocol/security_handler.cc b/content/browser/devtools/protocol/security_handler.cc
index bb8c8401f88a9e4629453da1bbfa55ca19c59a74..8b9be40afaa2171b143f09e171271a93d24ac6bf 100644
--- a/content/browser/devtools/protocol/security_handler.cc
+++ b/content/browser/devtools/protocol/security_handler.cc
@@ -25,7 +25,7 @@ std::string SecurityStyleToProtocolSecurityState(
case SECURITY_STYLE_UNKNOWN:
return kSecurityStateUnknown;
case SECURITY_STYLE_UNAUTHENTICATED:
- return kSecurityStateHttp;
+ return kSecurityStateNeutral;
case SECURITY_STYLE_AUTHENTICATION_BROKEN:
return kSecurityStateInsecure;
case SECURITY_STYLE_WARNING:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698