diff options
author | annacc@chromium.org <annacc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-06 21:11:52 +0000 |
---|---|---|
committer | annacc@chromium.org <annacc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-06 21:11:52 +0000 |
commit | 1f3a96e1d472d36ee6bcc8fd9d47e7354cd486b4 (patch) | |
tree | 2c9418d3eeb00bfe490bc27e34125605e9740996 /webkit | |
parent | 288538486b61a1c7730a0472f01dd9a4928cc5d4 (diff) | |
download | chromium_src-1f3a96e1d472d36ee6bcc8fd9d47e7354cd486b4.zip chromium_src-1f3a96e1d472d36ee6bcc8fd9d47e7354cd486b4.tar.gz chromium_src-1f3a96e1d472d36ee6bcc8fd9d47e7354cd486b4.tar.bz2 |
Let the CC button change state when clicked.
This patch separates the four button states. Note, mouse events are still in the works and so only the enabled and disabled states will show (not the hover and down states).
BUG=146786
Review URL: https://chromiumcodereview.appspot.com/10913113
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155244 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/webkitplatformsupport_impl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/webkitplatformsupport_impl.cc b/webkit/glue/webkitplatformsupport_impl.cc index 6083d0f..b4c5d13 100644 --- a/webkit/glue/webkitplatformsupport_impl.cc +++ b/webkit/glue/webkitplatformsupport_impl.cc @@ -462,11 +462,11 @@ const DataResource kDataResources[] = { IDR_MEDIAPLAYER_VOLUME_SLIDER_THUMB_DISABLED, ui::SCALE_FACTOR_100P }, { "mediaplayerClosedCaption", IDR_MEDIAPLAYER_CLOSEDCAPTION_BUTTON, ui::SCALE_FACTOR_100P }, - { "mediaplayerClosedCaption", + { "mediaplayerClosedCaptionHover", IDR_MEDIAPLAYER_CLOSEDCAPTION_BUTTON_HOVER, ui::SCALE_FACTOR_100P }, - { "mediaplayerClosedCaption", + { "mediaplayerClosedCaptionDown", IDR_MEDIAPLAYER_CLOSEDCAPTION_BUTTON_DOWN, ui::SCALE_FACTOR_100P }, - { "mediaplayerClosedCaption", + { "mediaplayerClosedCaptionDisabled", IDR_MEDIAPLAYER_CLOSEDCAPTION_BUTTON_DISABLED, ui::SCALE_FACTOR_100P }, { "mediaplayerFullscreen", IDR_MEDIAPLAYER_FULLSCREEN_BUTTON, ui::SCALE_FACTOR_100P }, |