| Index: ash/system/tray/tray_views.cc
|
| diff --git a/ash/system/tray/tray_views.cc b/ash/system/tray/tray_views.cc
|
| index 0f6e97de0ed0ffb94b93f61e728314b068650e2f..871b1b1524ab352840c56c1a2a6455ce45eb0a12 100644
|
| --- a/ash/system/tray/tray_views.cc
|
| +++ b/ash/system/tray/tray_views.cc
|
| @@ -431,10 +431,11 @@ void TrayPopupHeaderButton::StateChanged() {
|
| SpecialPopupRow::SpecialPopupRow()
|
| : content_(NULL),
|
| button_container_(NULL) {
|
| - set_background(views::Background::CreateBackgroundPainter(true,
|
| - views::Painter::CreateVerticalGradient(
|
| - kHeaderBackgroundColorLight,
|
| - kHeaderBackgroundColorDark)));
|
| + views::Background* background = views::Background::CreateBackgroundPainter(
|
| + true, views::Painter::CreateVerticalGradient(kHeaderBackgroundColorLight,
|
| + kHeaderBackgroundColorDark));
|
| + background->SetNativeControlColor(kHeaderBackgroundColorDark);
|
| + set_background(background);
|
| set_border(new SpecialPopupRowBorder);
|
| SetLayoutManager(
|
| new views::BoxLayout(views::BoxLayout::kHorizontal, 0, 0, 0));
|
|
|