Index: ui/base/native_theme/native_theme_win.cc |
diff --git a/ui/base/native_theme/native_theme_win.cc b/ui/base/native_theme/native_theme_win.cc |
index abe605f951f1c498845c036260c6496c836fa981..4f9b9306f38b50238eb132a87daa17263c67cc8b 100644 |
--- a/ui/base/native_theme/native_theme_win.cc |
+++ b/ui/base/native_theme/native_theme_win.cc |
@@ -33,8 +33,8 @@ namespace { |
const SkColor kInvalidColorIdColor = SkColorSetRGB(255, 0, 128); |
// Dialogs: |
const SkColor kDialogBackgroundColor = SkColorSetRGB(200, 200, 200); |
-// FocusableBorder (should be unused on Win): |
-const SkColor kFocusedBorderColor= SkColorSetRGB(0x4D, 0x90, 0xFE); |
+// FocusableBorder: |
+const SkColor kFocusedBorderColor = SkColorSetRGB(0x4D, 0x90, 0xFE); |
const SkColor kUnfocusedBorderColor = SkColorSetRGB(0xD9, 0xD9, 0xD9); |
// TextButton: |
const SkColor kTextButtonBackgroundColor = SkColorSetRGB(0xde, 0xde, 0xde); |
@@ -385,6 +385,12 @@ SkColor NativeThemeWin::GetSystemColor(ColorId color_id) const { |
// code in DialogClientView::OnPaint used GetSysColor(COLOR_3DFACE). |
return WinColorToSkColor(GetSysColor(COLOR_3DFACE)); |
+ // FocusableBorder |
+ case kColorId_FocusedBorderColor: |
+ return kFocusedBorderColor; |
+ case kColorId_UnfocusedBorderColor: |
+ return kUnfocusedBorderColor; |
+ |
// TextButton |
case kColorId_TextButtonBackgroundColor: |
return kTextButtonBackgroundColor; |