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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp

Issue 2329153002: Remove the WARNING security level.
Patch Set: Restore top control test for sub.originalwebsite.com (but with ERROR instead of WARNING). Created 4 years, 3 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: third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
index 400d556496762fcc6b9a646fadadaf6fb2d1e68f..7741fe80c8051570edc364387fcf044e0be2ad95 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
@@ -349,9 +349,6 @@ static std::unique_ptr<protocol::Network::Response> buildObjectForResourceRespon
case ResourceResponse::SecurityStyleAuthenticationBroken:
securityState = protocol::Security::SecurityStateEnum::Insecure;
break;
- case ResourceResponse::SecurityStyleWarning:
- securityState = protocol::Security::SecurityStateEnum::Warning;
- break;
case ResourceResponse::SecurityStyleAuthenticated:
securityState = protocol::Security::SecurityStateEnum::Secure;
break;

Powered by Google App Engine
This is Rietveld 408576698