| Index: ash/system/tray_accessibility.cc
|
| diff --git a/ash/system/tray_accessibility.cc b/ash/system/tray_accessibility.cc
|
| index 643ea49614574fb6a64ca545648c583da9728647..3e866f8961e0ad1c783d5f434a9e0febda4f23f2 100644
|
| --- a/ash/system/tray_accessibility.cc
|
| +++ b/ash/system/tray_accessibility.cc
|
| @@ -27,6 +27,7 @@
|
| #include "ui/base/resource/resource_bundle.h"
|
| #include "ui/gfx/image/image.h"
|
| #include "ui/gfx/paint_vector_icon.h"
|
| +#include "ui/native_theme/native_theme.h"
|
| #include "ui/resources/grit/ui_resources.h"
|
| #include "ui/views/background.h"
|
| #include "ui/views/controls/button/custom_button.h"
|
| @@ -130,7 +131,8 @@ AccessibilityPopupView::AccessibilityPopupView(uint32_t enabled_state_bits)
|
| : label_(CreateLabel(enabled_state_bits)) {}
|
|
|
| void AccessibilityPopupView::Init() {
|
| - set_background(views::Background::CreateSolidBackground(kBackgroundColor));
|
| + set_background(views::Background::CreateThemedSolidBackground(
|
| + this, ui::NativeTheme::kColorId_BubbleBackground));
|
|
|
| views::GridLayout* layout = new views::GridLayout(this);
|
| SetLayoutManager(layout);
|
|
|