diff options
author | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-11 18:08:06 +0000 |
---|---|---|
committer | sadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-11 18:08:06 +0000 |
commit | 082276bffc1bf9706663e965370be0aac47867e0 (patch) | |
tree | 636a3318393fb980415a6bd53e6cf7646075e7ec /ash/system/bluetooth | |
parent | 2736c031e3c5193012fe6dba36125fa450c51fcd (diff) | |
download | chromium_src-082276bffc1bf9706663e965370be0aac47867e0.zip chromium_src-082276bffc1bf9706663e965370be0aac47867e0.tar.gz chromium_src-082276bffc1bf9706663e965370be0aac47867e0.tar.bz2 |
ash: Add hover-effect to the items in the bottom rows of the uber tray popups.
BUG=127430
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10377107
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136612 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/system/bluetooth')
-rw-r--r-- | ash/system/bluetooth/tray_bluetooth.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ash/system/bluetooth/tray_bluetooth.cc b/ash/system/bluetooth/tray_bluetooth.cc index dcd561b..1f55bcd 100644 --- a/ash/system/bluetooth/tray_bluetooth.cc +++ b/ash/system/bluetooth/tray_bluetooth.cc @@ -104,7 +104,9 @@ class BluetoothDetailedView : public views::View, ash::Shell::GetInstance()->tray_delegate(); toggle_bluetooth_ = new TrayPopupHeaderButton(this, IDR_AURA_UBER_TRAY_BLUETOOTH_ENABLED, - IDR_AURA_UBER_TRAY_BLUETOOTH_DISABLED); + IDR_AURA_UBER_TRAY_BLUETOOTH_DISABLED, + IDR_AURA_UBER_TRAY_BLUETOOTH_ENABLED_HOVER, + IDR_AURA_UBER_TRAY_BLUETOOTH_DISABLED_HOVER); toggle_bluetooth_->SetToggled(!delegate->GetBluetoothEnabled()); header_->AddButton(toggle_bluetooth_); } |