| Index: ash/system/tray/tray_details_view.cc
|
| diff --git a/ash/system/tray/tray_details_view.cc b/ash/system/tray/tray_details_view.cc
|
| index 4098c8690647f4b1fa393a5b5e02a4f526bea988..fee3c723c106d63cc1454d702929a9e98886fbf6 100644
|
| --- a/ash/system/tray/tray_details_view.cc
|
| +++ b/ash/system/tray/tray_details_view.cc
|
| @@ -21,7 +21,6 @@
|
| #include "ui/compositor/paint_recorder.h"
|
| #include "ui/gfx/canvas.h"
|
| #include "ui/gfx/skia_paint_util.h"
|
| -#include "ui/native_theme/native_theme.h"
|
| #include "ui/views/background.h"
|
| #include "ui/views/border.h"
|
| #include "ui/views/controls/label.h"
|
| @@ -239,8 +238,7 @@
|
| tri_view_(nullptr),
|
| back_button_(nullptr) {
|
| SetLayoutManager(box_layout_);
|
| - set_background(views::Background::CreateThemedSolidBackground(
|
| - this, ui::NativeTheme::kColorId_BubbleBackground));
|
| + set_background(views::Background::CreateSolidBackground(kBackgroundColor));
|
| }
|
|
|
| TrayDetailsView::~TrayDetailsView() {}
|
| @@ -297,8 +295,8 @@
|
| // Make the |scroller_| have a layer to clip |scroll_content_|'s children.
|
| // TODO(varkha): Make the sticky rows work with EnableViewPortLayer().
|
| scroller_->SetPaintToLayer();
|
| - scroller_->set_background(views::Background::CreateThemedSolidBackground(
|
| - scroller_, ui::NativeTheme::kColorId_BubbleBackground));
|
| + scroller_->set_background(
|
| + views::Background::CreateSolidBackground(kBackgroundColor));
|
| scroller_->layer()->SetMasksToBounds(true);
|
|
|
| AddChildView(scroller_);
|
|
|