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

Unified Diff: chrome/browser/chromeos/system_key_event_listener.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/system_key_event_listener.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/system_key_event_listener.cc
diff --git a/chrome/browser/chromeos/system_key_event_listener.cc b/chrome/browser/chromeos/system_key_event_listener.cc
index 09049f6a8b9582c4de8ee2270bbf9b4c5bc8d37c..dbd7cbddb826cce7c11069fee87f3099e3b8628d 100644
--- a/chrome/browser/chromeos/system_key_event_listener.cc
+++ b/chrome/browser/chromeos/system_key_event_listener.cc
@@ -26,6 +26,11 @@ namespace {
// Percent by which the volume should be changed when a volume key is pressed.
const double kStepPercentage = 4.0;
+// Percent to which the volume should be set when the "volume up" key is pressed
+// while we're muted and have the volume set to 0. See
+// http://crosbug.com/13618.
+const double kVolumePercentOnVolumeUpWhileMuted = 25.0;
+
} // namespace
// static
@@ -169,36 +174,32 @@ void SystemKeyEventListener::OnVolumeMute() {
// Always muting (and not toggling) as per final decision on
// http://crosbug.com/3751
audio_handler_->SetMuted(true);
- VolumeBubble::GetInstance()->ShowBubble(0);
- BrightnessBubble::GetInstance()->HideBubble();
+ ShowVolumeBubble();
}
void SystemKeyEventListener::OnVolumeDown() {
if (!audio_handler_->IsInitialized())
return;
- if (audio_handler_->IsMuted()) {
- VolumeBubble::GetInstance()->ShowBubble(0);
- } else {
+ if (audio_handler_->IsMuted())
+ audio_handler_->SetVolumePercent(0.0);
+ else
audio_handler_->AdjustVolumeByPercent(-kStepPercentage);
- VolumeBubble::GetInstance()->ShowBubble(
- audio_handler_->GetVolumePercent());
- }
- BrightnessBubble::GetInstance()->HideBubble();
+ ShowVolumeBubble();
}
void SystemKeyEventListener::OnVolumeUp() {
if (!audio_handler_->IsInitialized())
return;
- if (audio_handler_->IsMuted())
+ if (audio_handler_->IsMuted()) {
audio_handler_->SetMuted(false);
- else
+ if (audio_handler_->GetVolumePercent() <= 0.1) // float comparison
+ audio_handler_->SetVolumePercent(kVolumePercentOnVolumeUpWhileMuted);
+ } else {
audio_handler_->AdjustVolumeByPercent(kStepPercentage);
-
- VolumeBubble::GetInstance()->ShowBubble(
- audio_handler_->GetVolumePercent());
- BrightnessBubble::GetInstance()->HideBubble();
+ }
+ ShowVolumeBubble();
}
void SystemKeyEventListener::OnCapsLock(bool enabled) {
@@ -206,6 +207,13 @@ void SystemKeyEventListener::OnCapsLock(bool enabled) {
CapsLockObserver, caps_lock_observers_, OnCapsLockChange(enabled));
}
+void SystemKeyEventListener::ShowVolumeBubble() {
+ VolumeBubble::GetInstance()->ShowBubble(
+ audio_handler_->GetVolumePercent(),
+ !audio_handler_->IsMuted());
+ BrightnessBubble::GetInstance()->HideBubble();
+}
+
bool SystemKeyEventListener::ProcessedXEvent(XEvent* xevent) {
if (xevent->type == xkb_event_base_) {
XkbEvent* xkey_event = reinterpret_cast<XkbEvent*>(xevent);
« no previous file with comments | « chrome/browser/chromeos/system_key_event_listener.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698