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

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

Issue 2400673003: Remove SSLStatus::security_style member and content::SecurityStyle (Closed)
Patch Set: more curly braces Created 4 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/captive_portal_blocking_page.cc
diff --git a/chrome/browser/ssl/captive_portal_blocking_page.cc b/chrome/browser/ssl/captive_portal_blocking_page.cc
index 5ec37bd825e2a14317ee65eccf9e6753f41dcc4d..0c37b9a46b8b38373d73258914dd630a12231fcb 100644
--- a/chrome/browser/ssl/captive_portal_blocking_page.cc
+++ b/chrome/browser/ssl/captive_portal_blocking_page.cc
@@ -245,8 +245,7 @@ void CaptivePortalBlockingPage::CommandReceived(const std::string& command) {
}
void CaptivePortalBlockingPage::OverrideEntry(content::NavigationEntry* entry) {
- entry->GetSSL() = content::SSLStatus(
- content::SECURITY_STYLE_AUTHENTICATION_BROKEN, ssl_info_.cert, ssl_info_);
+ entry->GetSSL() = content::SSLStatus(ssl_info_.cert, ssl_info_);
}
void CaptivePortalBlockingPage::OnProceed() {
« no previous file with comments | « chrome/browser/ssl/bad_clock_blocking_page.cc ('k') | chrome/browser/ssl/captive_portal_blocking_page_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698