| Index: ui/native_theme/common_theme.cc
|
| diff --git a/ui/native_theme/common_theme.cc b/ui/native_theme/common_theme.cc
|
| index 80f3452d76d822e45f668cc4e78bb3297c71ad49..fdd297458c4965ae9733a7f4f19f527010c2a23a 100644
|
| --- a/ui/native_theme/common_theme.cc
|
| +++ b/ui/native_theme/common_theme.cc
|
| @@ -12,7 +12,6 @@
|
| #include "ui/gfx/geometry/rect.h"
|
| #include "ui/gfx/image/image_skia.h"
|
| #include "ui/gfx/skia_util.h"
|
| -#include "ui/gfx/sys_color_change_listener.h"
|
| #include "ui/resources/grit/ui_resources.h"
|
|
|
| namespace {
|
| @@ -124,7 +123,7 @@ bool CommonThemeGetSystemColor(NativeTheme::ColorId color_id, SkColor* color) {
|
| return false;
|
| }
|
|
|
| - if (gfx::IsInvertedColorScheme()) {
|
| + if (color_utils::IsInvertedColorScheme()) {
|
| switch (color_id) {
|
| case NativeTheme::kColorId_FocusedMenuItemBackgroundColor:
|
| *color = kMenuInvertedSchemeHighlightBackgroundColor;
|
|
|