From e83f16853d443dd0556b7e8c42f1f6013581715d Mon Sep 17 00:00:00 2001 From: "brettw@google.com" Date: Sun, 7 Sep 2008 23:57:40 +0000 Subject: Fix SSL state in the URL bar being incorrect. Going to an EV site like https://www.verisign.com/ would not should the EV name in the URL bar unless you did something like switch tabs away and back because in my cleanup I removed the notification that this was depending on. This patch adds a new NOTIFY_SSL_STATE_CHANGED notification which is broadcast by the various SSL components when they update the flags. The browser now listens for this notification and will update the URL bar. BUG=1359547 TEST=see repro steps in bug Review URL: http://codereview.chromium.org/436 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1831 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/views/location_bar_view.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'chrome/browser/views') diff --git a/chrome/browser/views/location_bar_view.cc b/chrome/browser/views/location_bar_view.cc index 016a85c..e9c0837 100644 --- a/chrome/browser/views/location_bar_view.cc +++ b/chrome/browser/views/location_bar_view.cc @@ -15,7 +15,6 @@ #include "chrome/browser/navigation_entry.h" #include "chrome/browser/page_info_window.h" #include "chrome/browser/profile.h" -#include "chrome/browser/ssl_error_info.h" #include "chrome/browser/template_url.h" #include "chrome/browser/template_url_model.h" #include "chrome/browser/view_ids.h" @@ -29,8 +28,6 @@ #include "chrome/views/border.h" #include "chrome/views/root_view.h" #include "chrome/views/view_container.h" -#include "googleurl/src/gurl.h" -#include "googleurl/src/url_canon.h" #include "generated_resources.h" using ChromeViews::View; -- cgit v1.1