| Index: chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
|
| ===================================================================
|
| --- chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc (revision 91771)
|
| +++ chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc (working copy)
|
| @@ -707,7 +707,7 @@
|
| added_as_message_loop_observer_(false),
|
| hover_tab_selector_(model) {
|
| theme_service_->InitThemesFor(this);
|
| - registrar_.Add(this, NotificationType::BROWSER_THEME_CHANGED,
|
| + registrar_.Add(this, chrome::BROWSER_THEME_CHANGED,
|
| Source<ThemeService>(theme_service_));
|
| }
|
|
|
| @@ -1288,7 +1288,7 @@
|
| void TabStripGtk::Observe(NotificationType type,
|
| const NotificationSource& source,
|
| const NotificationDetails& details) {
|
| - if (type == NotificationType::BROWSER_THEME_CHANGED) {
|
| + if (type == chrome::BROWSER_THEME_CHANGED) {
|
| TabRendererGtk::SetSelectedTitleColor(theme_service_->GetColor(
|
| ThemeService::COLOR_TAB_TEXT));
|
| TabRendererGtk::SetUnselectedTitleColor(theme_service_->GetColor(
|
|
|