| Index: chrome/browser/views/tabs/side_tab.cc
|
| diff --git a/chrome/browser/views/tabs/side_tab.cc b/chrome/browser/views/tabs/side_tab.cc
|
| index bad2b4eb88933f4fe3c8cd82a126ef6edb1f57de..c2448d2fc8cc991c1a8b7d392d8a1bb4ea96ad75 100644
|
| --- a/chrome/browser/views/tabs/side_tab.cc
|
| +++ b/chrome/browser/views/tabs/side_tab.cc
|
| @@ -13,7 +13,6 @@
|
| #include "gfx/path.h"
|
| #include "gfx/skia_util.h"
|
| #include "grit/app_resources.h"
|
| -#include "grit/theme_resources.h"
|
| #include "views/controls/button/image_button.h"
|
|
|
| namespace {
|
| @@ -38,11 +37,8 @@ const int kPhantomTabIconAlpha = 100;
|
| // SideTab, public:
|
|
|
| SideTab::SideTab(TabController* controller)
|
| - : BaseTab(controller) {
|
| - ResourceBundle& rb = ResourceBundle::GetSharedInstance();
|
| - close_button()->SetBackground(kTextColor,
|
| - rb.GetBitmapNamed(IDR_TAB_CLOSE),
|
| - rb.GetBitmapNamed(IDR_TAB_CLOSE_MASK));
|
| + : BaseTab(controller, false) {
|
| + SetCloseButtonColor(kTextColor);
|
| }
|
|
|
| SideTab::~SideTab() {
|
|
|