Index: chrome/browser/ui/gtk/download/download_shelf_gtk.cc |
diff --git a/chrome/browser/ui/gtk/download/download_shelf_gtk.cc b/chrome/browser/ui/gtk/download/download_shelf_gtk.cc |
index d5a2aa569292af47f581844d32ef903f6594a9d2..d1badeab6956a9eea17d0e516976e08c6e0eeddf 100644 |
--- a/chrome/browser/ui/gtk/download/download_shelf_gtk.cc |
+++ b/chrome/browser/ui/gtk/download/download_shelf_gtk.cc |
@@ -120,7 +120,7 @@ DownloadShelfGtk::DownloadShelfGtk(Browser* browser, GtkWidget* parent) |
gtk_container_add(GTK_CONTAINER(shelf_.get()), vbox); |
// Create and pack the close button. |
- close_button_.reset(CustomDrawButton::CloseButton(theme_service_)); |
+ close_button_.reset(CustomDrawButton::CloseButtonBar(theme_service_)); |
gtk_util::CenterWidgetInHBox(outer_hbox, close_button_->widget(), true, 0); |
g_signal_connect(close_button_->widget(), "clicked", |
G_CALLBACK(OnButtonClickThunk), this); |
@@ -268,8 +268,8 @@ void DownloadShelfGtk::Observe(int type, |
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance(); |
close_button_->SetBackground( |
theme_service_->GetColor(ThemeProperties::COLOR_TAB_TEXT), |
- rb.GetImageNamed(IDR_CLOSE_BAR).AsBitmap(), |
- rb.GetImageNamed(IDR_CLOSE_BAR_MASK).AsBitmap()); |
+ rb.GetImageNamed(IDR_CLOSE_1).AsBitmap(), |
+ rb.GetImageNamed(IDR_CLOSE_1_MASK).AsBitmap()); |
} |
} |