From b483c8f23fad0b6962ace28e33d472fa8932f7f2 Mon Sep 17 00:00:00 2001 From: "ananta@chromium.org" Date: Fri, 10 Sep 2010 19:15:59 +0000 Subject: Removing the special case for SECURITY_STYLE_AUTHENTICATION_BROKEN in ChromeFrame when we update the navigation state. We now default to SECURELOCK_SET_UNSECURE in case of any auth errors. Fixes bug http://code.google.com/p/chromium/issues/detail?id=53649 Bug=53649 Review URL: http://codereview.chromium.org/3345020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59128 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/chrome_active_document.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'chrome_frame') diff --git a/chrome_frame/chrome_active_document.cc b/chrome_frame/chrome_active_document.cc index 37c089c..7cb1661 100644 --- a/chrome_frame/chrome_active_document.cc +++ b/chrome_frame/chrome_active_document.cc @@ -699,9 +699,6 @@ void ChromeActiveDocument::UpdateNavigationState( if (is_ssl_state_changed) { int lock_status = SECURELOCK_SET_UNSECURE; switch (new_navigation_info.security_style) { - case SECURITY_STYLE_AUTHENTICATION_BROKEN: - lock_status = SECURELOCK_SET_SECUREUNKNOWNBIT; - break; case SECURITY_STYLE_AUTHENTICATED: lock_status = new_navigation_info.displayed_insecure_content ? SECURELOCK_SET_MIXED : SECURELOCK_SET_SECUREUNKNOWNBIT; -- cgit v1.1