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

Unified Diff: chrome/browser/browser.cc

Issue 48059: SSLPolicy Fix: Step 5.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/ssl/ssl_manager.cc » ('j') | chrome/common/notification_type.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser.cc
===================================================================
--- chrome/browser/browser.cc (revision 11852)
+++ chrome/browser/browser.cc (working copy)
@@ -183,7 +183,7 @@
NotificationService::current()->AddObserver(
this,
- NotificationType::SSL_STATE_CHANGED,
+ NotificationType::SSL_VISIBLE_STATE_CHANGED,
NotificationService::AllSources());
InitCommandState();
@@ -228,7 +228,7 @@
NotificationService::current()->RemoveObserver(
this,
- NotificationType::SSL_STATE_CHANGED,
+ NotificationType::SSL_VISIBLE_STATE_CHANGED,
NotificationService::AllSources());
if (profile_->IsOffTheRecord() &&
@@ -1932,7 +1932,7 @@
}
break;
- case NotificationType::SSL_STATE_CHANGED:
+ case NotificationType::SSL_VISIBLE_STATE_CHANGED:
// When the current tab's SSL state changes, we need to update the URL
// bar to reflect the new state. Note that it's possible for the selected
// tab contents to be NULL. This is because we listen for all sources
« no previous file with comments | « no previous file | chrome/browser/ssl/ssl_manager.cc » ('j') | chrome/common/notification_type.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698