| Index: chrome/browser/ui/gtk/custom_button.cc
|
| diff --git a/chrome/browser/ui/gtk/custom_button.cc b/chrome/browser/ui/gtk/custom_button.cc
|
| index 2b41351df5ae1d617c7aef17e8281a382d0450c9..0c7ce85c255ea33d6aa5a659172be872a7406f7c 100644
|
| --- a/chrome/browser/ui/gtk/custom_button.cc
|
| +++ b/chrome/browser/ui/gtk/custom_button.cc
|
| @@ -355,10 +355,20 @@ gboolean CustomDrawButton::OnCustomExpose(GtkWidget* sender,
|
| }
|
|
|
| // static
|
| -CustomDrawButton* CustomDrawButton::CloseButton(
|
| +CustomDrawButton* CustomDrawButton::CloseButtonBar(
|
| GtkThemeService* theme_provider) {
|
| - CustomDrawButton* button = new CustomDrawButton(theme_provider, IDR_CLOSE_BAR,
|
| - IDR_CLOSE_BAR_P, IDR_CLOSE_BAR_H, 0, GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU);
|
| + CustomDrawButton* button = new CustomDrawButton(theme_provider,
|
| + IDR_CLOSE_1, IDR_CLOSE_1_P, IDR_CLOSE_1_H, 0,
|
| + GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU);
|
| + return button;
|
| +}
|
| +
|
| +// static
|
| +CustomDrawButton* CustomDrawButton::CloseButtonBubble(
|
| + GtkThemeService* theme_provider) {
|
| + CustomDrawButton* button = new CustomDrawButton(theme_provider,
|
| + IDR_CLOSE_2, IDR_CLOSE_2_P, IDR_CLOSE_2_H, 0,
|
| + GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU);
|
| return button;
|
| }
|
|
|
|
|