diff options
author | saintlou@chromium.org <saintlou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-11 18:49:50 +0000 |
---|---|---|
committer | saintlou@chromium.org <saintlou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-11 18:49:50 +0000 |
commit | 114651a1b7f04bc4846d8e7ebe5dad4f0e51e39a (patch) | |
tree | dc6790bdb09e72bf755fa6aabf5d416611d96d96 /ui/gfx/native_theme.h | |
parent | 55f2c62685e07e992d1c09c96f728db5c9765d6b (diff) | |
download | chromium_src-114651a1b7f04bc4846d8e7ebe5dad4f0e51e39a.zip chromium_src-114651a1b7f04bc4846d8e7ebe5dad4f0e51e39a.tar.gz chromium_src-114651a1b7f04bc4846d8e7ebe5dad4f0e51e39a.tar.bz2 |
Factor more colors into NativeTheme.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/9101004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117245 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/native_theme.h')
-rw-r--r-- | ui/gfx/native_theme.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/ui/gfx/native_theme.h b/ui/gfx/native_theme.h index a7fef8e..900eb2f0 100644 --- a/ui/gfx/native_theme.h +++ b/ui/gfx/native_theme.h @@ -216,9 +216,21 @@ class UI_EXPORT NativeTheme { // Colors for GetSystemColor(). enum ColorId { + // Dialogs kColorId_DialogBackground, + // FocusableBorder kColorId_FocusedBorderColor, - kColorId_UnfocusedBorderColor + kColorId_UnfocusedBorderColor, + // TextButton + kColorId_TextButtonBackgroundColor, + kColorId_TextButtonEnabledColor, + kColorId_TextButtonDisabledColor, + kColorId_TextButtonHighlightColor, + kColorId_TextButtonHoverColor, + // MenuItem + kColorId_EnabledMenuItemForegroundColor, + kColorId_DisabledMenuItemForegroundColor, + kColorId_FocusedMenuItemBackgroundColor // TODO(benrg): move other hardcoded colors here. }; |