Index: chrome/browser/ui/views/toolbar/toolbar_button.cc |
diff --git a/chrome/browser/ui/views/toolbar/toolbar_button.cc b/chrome/browser/ui/views/toolbar/toolbar_button.cc |
index dd64ad4664753465ae529789a9f4a014c9541484..62e24d91f7da53c404987c18cb9559b93d248726 100644 |
--- a/chrome/browser/ui/views/toolbar/toolbar_button.cc |
+++ b/chrome/browser/ui/views/toolbar/toolbar_button.cc |
@@ -38,14 +38,6 @@ void ToolbarButton::Init() { |
// Provides the hover/pressed style used by buttons in the toolbar. |
views::LabelButtonBorder* border = |
new views::LabelButtonBorder(views::Button::STYLE_TEXTBUTTON); |
- const int kHoverImages[] = IMAGE_GRID(IDR_TOOLBAR_BUTTON_HOVER); |
msw
2013/12/17 01:02:36
If this is ok, we'll also need to remove the IDRs
|
- border->SetPainter(false, views::Button::STATE_HOVERED, |
- views::Painter::CreateImageGridPainter( |
- kHoverImages)); |
- const int kPressedImages[] = IMAGE_GRID(IDR_TOOLBAR_BUTTON_PRESSED); |
- border->SetPainter(false, views::Button::STATE_PRESSED, |
- views::Painter::CreateImageGridPainter( |
- kPressedImages)); |
set_border(border); |
} |