Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: chrome/browser/chromeos/setting_level_bubble.cc

Issue 7566018: chromeos: Update volume key behavior. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/setting_level_bubble.h ('k') | chrome/browser/chromeos/setting_level_bubble_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/setting_level_bubble.cc
diff --git a/chrome/browser/chromeos/setting_level_bubble.cc b/chrome/browser/chromeos/setting_level_bubble.cc
index e6b5176909a6f3512c0241da407c700a605bfee8..709bd302f4ecd8cc47f8ca81de239aa7b5d0b4b4 100644
--- a/chrome/browser/chromeos/setting_level_bubble.cc
+++ b/chrome/browser/chromeos/setting_level_bubble.cc
@@ -74,12 +74,12 @@ static views::Widget* GetToplevelWidget() {
SettingLevelBubble::SettingLevelBubble(SkBitmap* increase_icon,
SkBitmap* decrease_icon,
- SkBitmap* zero_icon)
+ SkBitmap* disabled_icon)
: previous_percent_(-1),
current_percent_(-1),
increase_icon_(increase_icon),
decrease_icon_(decrease_icon),
- zero_icon_(zero_icon),
+ disabled_icon_(disabled_icon),
bubble_(NULL),
view_(NULL),
animation_(this) {
@@ -89,15 +89,15 @@ SettingLevelBubble::SettingLevelBubble(SkBitmap* increase_icon,
SettingLevelBubble::~SettingLevelBubble() {}
-void SettingLevelBubble::ShowBubble(int percent) {
+void SettingLevelBubble::ShowBubble(int percent, bool enabled) {
percent = LimitPercent(percent);
if (previous_percent_ == -1)
previous_percent_ = percent;
current_percent_ = percent;
SkBitmap* icon = increase_icon_;
- if (current_percent_ == 0)
- icon = zero_icon_;
+ if (!enabled || current_percent_ == 0)
+ icon = disabled_icon_;
else if (current_percent_ < previous_percent_)
icon = decrease_icon_;
@@ -109,7 +109,7 @@ void SettingLevelBubble::ShowBubble(int percent) {
}
DCHECK(view_ == NULL);
view_ = new SettingLevelBubbleView;
- view_->Init(icon, previous_percent_);
+ view_->Init(icon, previous_percent_, enabled);
// Calculate the position in screen coordinates that the bubble should
// "point" at (since we use BubbleBorder::FLOAT, this position actually
@@ -135,10 +135,14 @@ void SettingLevelBubble::ShowBubble(int percent) {
timeout_timer_.Stop();
view_->SetIcon(icon);
}
+
+ view_->SetEnabled(enabled);
+
if (animation_.is_animating())
animation_.End();
animation_.Reset();
animation_.Show();
+
timeout_timer_.Start(base::TimeDelta::FromSeconds(kBubbleShowTimeoutSec),
this, &SettingLevelBubble::OnTimeout);
}
@@ -148,7 +152,10 @@ void SettingLevelBubble::HideBubble() {
bubble_->Close();
}
-void SettingLevelBubble::UpdateWithoutShowingBubble(int percent) {
+void SettingLevelBubble::UpdateWithoutShowingBubble(int percent, bool enabled) {
+ if (view_)
+ view_->SetEnabled(enabled);
+
percent = LimitPercent(percent);
previous_percent_ =
@@ -191,7 +198,7 @@ void SettingLevelBubble::AnimationEnded(const ui::Animation* animation) {
void SettingLevelBubble::AnimationProgressed(const ui::Animation* animation) {
if (view_) {
- view_->Update(
+ view_->SetLevel(
ui::Tween::ValueBetween(animation->GetCurrentValue(),
previous_percent_,
current_percent_));
« no previous file with comments | « chrome/browser/chromeos/setting_level_bubble.h ('k') | chrome/browser/chromeos/setting_level_bubble_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698