summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_active_document.cc
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-10 19:15:59 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-10 19:15:59 +0000
commitb483c8f23fad0b6962ace28e33d472fa8932f7f2 (patch)
tree74695d2e06a983e6c2b51c08790919c482c61980 /chrome_frame/chrome_active_document.cc
parent772d548d6997833e9d4cd2d5649a6aadcad30124 (diff)
downloadchromium_src-b483c8f23fad0b6962ace28e33d472fa8932f7f2.zip
chromium_src-b483c8f23fad0b6962ace28e33d472fa8932f7f2.tar.gz
chromium_src-b483c8f23fad0b6962ace28e33d472fa8932f7f2.tar.bz2
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
Diffstat (limited to 'chrome_frame/chrome_active_document.cc')
-rw-r--r--chrome_frame/chrome_active_document.cc3
1 files changed, 0 insertions, 3 deletions
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;