summaryrefslogtreecommitdiffstats
path: root/views/controls/menu
diff options
context:
space:
mode:
authorxiyuan@chromium.org <xiyuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-07 21:48:00 +0000
committerxiyuan@chromium.org <xiyuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-07 21:48:00 +0000
commitbc79442e02efea0e46c06e55b41248235d860ed3 (patch)
tree5ee27df1a98ab22bbe881840adfffe92d663cecf /views/controls/menu
parent66b29992dcbe65fe31dea866dbb9ac31edcb01f4 (diff)
downloadchromium_src-bc79442e02efea0e46c06e55b41248235d860ed3.zip
chromium_src-bc79442e02efea0e46c06e55b41248235d860ed3.tar.gz
chromium_src-bc79442e02efea0e46c06e55b41248235d860ed3.tar.bz2
Fix a typo that caused wrong menu highlight color being used for ChromeOS.
BUG=chromium-os:4580 TEST=Verify correct color 0xDCE4FA is used for menu highlight per chromium-os:4580. Review URL: http://codereview.chromium.org/2861049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51780 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/menu')
-rw-r--r--views/controls/menu/menu_item_view_gtk.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/controls/menu/menu_item_view_gtk.cc b/views/controls/menu/menu_item_view_gtk.cc
index db21e01..5526966 100644
--- a/views/controls/menu/menu_item_view_gtk.cc
+++ b/views/controls/menu/menu_item_view_gtk.cc
@@ -16,7 +16,7 @@
namespace views {
// Background color when the menu item is selected.
-#if defined(OS_CHROMOS)
+#if defined(OS_CHROMEOS)
static const SkColor kSelectedBackgroundColor = SkColorSetRGB(0xDC, 0xE4, 0xFA);
#else
static const SkColor kSelectedBackgroundColor = SkColorSetRGB(246, 249, 253);