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

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

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/brightness_observer.cc ('k') | chrome/browser/chromeos/setting_level_bubble.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/setting_level_bubble.h
diff --git a/chrome/browser/chromeos/setting_level_bubble.h b/chrome/browser/chromeos/setting_level_bubble.h
index 765aaa26e61064a3194441c6624c25e051819eef..00b7115493554f227302a7f1ce40795b077955b1 100644
--- a/chrome/browser/chromeos/setting_level_bubble.h
+++ b/chrome/browser/chromeos/setting_level_bubble.h
@@ -23,7 +23,7 @@ class SettingLevelBubbleView;
class SettingLevelBubble : public BubbleDelegate,
public ui::AnimationDelegate {
public:
- void ShowBubble(int percent);
+ void ShowBubble(int percent, bool enabled);
void HideBubble();
// Update the bubble's current level without showing the bubble onscreen.
@@ -41,7 +41,7 @@ class SettingLevelBubble : public BubbleDelegate,
// If we didn't update our internal state to 25% after 2), then the animation
// displayed in response to 3) would show the bubble animating from 50% down
// to 30%, rather than from 25% up to 30%.
- void UpdateWithoutShowingBubble(int percent);
+ void UpdateWithoutShowingBubble(int percent, bool enabled);
protected:
SettingLevelBubble(SkBitmap* increase_icon,
@@ -53,23 +53,23 @@ class SettingLevelBubble : public BubbleDelegate,
void OnTimeout();
// Overridden from BubbleDelegate.
- virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
- virtual bool CloseOnEscape();
- virtual bool FadeInOnShow();
+ virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) OVERRIDE;
+ virtual bool CloseOnEscape() OVERRIDE;
+ virtual bool FadeInOnShow() OVERRIDE;
// Overridden from ui::AnimationDelegate.
- virtual void AnimationEnded(const ui::Animation* animation);
- virtual void AnimationProgressed(const ui::Animation* animation);
+ virtual void AnimationEnded(const ui::Animation* animation) OVERRIDE;
+ virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
// Previous and current percentages, or -1 if not yet shown.
int previous_percent_;
int current_percent_;
// Icons displayed in the bubble when increasing or decreasing the level or
- // setting it to zero. Not owned by us.
+ // when it's disabled. Not owned by us.
SkBitmap* increase_icon_;
SkBitmap* decrease_icon_;
- SkBitmap* zero_icon_;
+ SkBitmap* disabled_icon_;
// Currently shown bubble or NULL.
Bubble* bubble_;
« no previous file with comments | « chrome/browser/chromeos/brightness_observer.cc ('k') | chrome/browser/chromeos/setting_level_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698