| Index: chrome/browser/ui/gtk/status_bubble_gtk.cc
|
| ===================================================================
|
| --- chrome/browser/ui/gtk/status_bubble_gtk.cc (revision 91880)
|
| +++ chrome/browser/ui/gtk/status_bubble_gtk.cc (working copy)
|
| @@ -49,7 +49,7 @@
|
| InitWidgets();
|
|
|
| theme_service_->InitThemesFor(this);
|
| - registrar_.Add(this, NotificationType::BROWSER_THEME_CHANGED,
|
| + registrar_.Add(this, chrome::NOTIFICATION_BROWSER_THEME_CHANGED,
|
| Source<ThemeService>(theme_service_));
|
| }
|
|
|
| @@ -234,10 +234,10 @@
|
| download_shelf_is_visible_ = visible;
|
| }
|
|
|
| -void StatusBubbleGtk::Observe(NotificationType type,
|
| +void StatusBubbleGtk::Observe(int type,
|
| const NotificationSource& source,
|
| const NotificationDetails& details) {
|
| - if (type == NotificationType::BROWSER_THEME_CHANGED) {
|
| + if (type == chrome::NOTIFICATION_BROWSER_THEME_CHANGED) {
|
| UserChangedTheme();
|
| }
|
| }
|
|
|