| Index: chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc
|
| diff --git a/chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc b/chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc
|
| index ead319f75251bce49c263aab5abac63d39416b3d..8ea5ae5eaf36bbcb558d95be1c7b915558663e4c 100644
|
| --- a/chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc
|
| +++ b/chrome/browser/ui/views/autocomplete/autocomplete_result_view.cc
|
| @@ -24,7 +24,7 @@
|
| #include "ui/base/text/text_elider.h"
|
| #include "ui/gfx/canvas.h"
|
| #include "ui/gfx/color_utils.h"
|
| -#include "ui/gfx/native_theme.h"
|
| +#include "ui/base/native_theme/native_theme.h"
|
|
|
| namespace {
|
|
|
| @@ -139,11 +139,11 @@ SkColor AutocompleteResultView::GetColor(ResultViewState state,
|
| colors[NORMAL][TEXT] = color_utils::GetSysSkColor(COLOR_WINDOWTEXT);
|
| colors[SELECTED][TEXT] = color_utils::GetSysSkColor(COLOR_HIGHLIGHTTEXT);
|
| #elif defined(USE_AURA)
|
| - const gfx::NativeTheme* theme = gfx::NativeTheme::instance();
|
| + const ui::NativeTheme* theme = ui::NativeTheme::instance();
|
| colors[SELECTED][BACKGROUND] = theme->GetSystemColor(
|
| - gfx::NativeTheme::kColorId_TextfieldSelectionBackgroundFocused);
|
| + ui::NativeTheme::kColorId_TextfieldSelectionBackgroundFocused);
|
| colors[NORMAL][BACKGROUND] = theme->GetSystemColor(
|
| - gfx::NativeTheme::kColorId_TextfieldDefaultBackground);
|
| + ui::NativeTheme::kColorId_TextfieldDefaultBackground);
|
| colors[NORMAL][URL] = SkColorSetARGB(0xff, 0x00, 0x99, 0x33);
|
| colors[SELECTED][URL] = SkColorSetARGB(0xff, 0x00, 0x66, 0x22);
|
| colors[HOVERED][URL] = SkColorSetARGB(0xff, 0x00, 0x66, 0x22);
|
|
|