| Index: chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc
|
| ===================================================================
|
| --- chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc (revision 91880)
|
| +++ chrome/browser/ui/gtk/omnibox/omnibox_popup_view_gtk.cc (working copy)
|
| @@ -311,7 +311,7 @@
|
| G_CALLBACK(HandleExposeThunk), this);
|
|
|
| registrar_.Add(this,
|
| - NotificationType::BROWSER_THEME_CHANGED,
|
| + chrome::NOTIFICATION_BROWSER_THEME_CHANGED,
|
| NotificationService::AllSources());
|
| theme_service_->InitThemesFor(this);
|
|
|
| @@ -388,10 +388,10 @@
|
| ignore_mouse_drag_ = true;
|
| }
|
|
|
| -void OmniboxPopupViewGtk::Observe(NotificationType type,
|
| +void OmniboxPopupViewGtk::Observe(int type,
|
| const NotificationSource& source,
|
| const NotificationDetails& details) {
|
| - DCHECK(type == NotificationType::BROWSER_THEME_CHANGED);
|
| + DCHECK(type == chrome::NOTIFICATION_BROWSER_THEME_CHANGED);
|
|
|
| if (theme_service_->UsingNativeTheme()) {
|
| gtk_util::UndoForceFontSize(window_);
|
|
|