diff options
author | tkent <tkent@chromium.org> | 2015-10-26 17:20:34 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-27 00:21:39 +0000 |
commit | 12258629d45b10a77cdd0bdd1d6c95d12c51818d (patch) | |
tree | 948fe79dd3d681c03430568d405ab49e49046838 /components/html_viewer/web_theme_engine_impl.cc | |
parent | 38ae661b252d977ce675140c6e5470204809d0c0 (diff) | |
download | chromium_src-12258629d45b10a77cdd0bdd1d6c95d12c51818d.zip chromium_src-12258629d45b10a77cdd0bdd1d6c95d12c51818d.tar.gz chromium_src-12258629d45b10a77cdd0bdd1d6c95d12c51818d.tar.bz2 |
native_theme: Add capability to draw non-black menulist arrow.
However, we alwyas specify black in Blink. This CL has no behavior changes.
This CL is a preparation to fix crbug.com/379377.
BUG=379377
Review URL: https://codereview.chromium.org/1426643002
Cr-Commit-Position: refs/heads/master@{#356197}
Diffstat (limited to 'components/html_viewer/web_theme_engine_impl.cc')
-rw-r--r-- | components/html_viewer/web_theme_engine_impl.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/html_viewer/web_theme_engine_impl.cc b/components/html_viewer/web_theme_engine_impl.cc index da55ac4..21672a2 100644 --- a/components/html_viewer/web_theme_engine_impl.cc +++ b/components/html_viewer/web_theme_engine_impl.cc @@ -129,6 +129,8 @@ void GetNativeThemeExtraParams( extra_params->menuList.arrowY; native_theme_extra_params->menu_list.arrow_size = extra_params->menuList.arrowSize; + native_theme_extra_params->menu_list.arrow_color = + extra_params->menuList.arrowColor; native_theme_extra_params->menu_list.background_color = extra_params->menuList.backgroundColor; break; |