blob: e18bb019673131abfaad2b68752ab77b6e5efde9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/ash/volume_controller_chromeos.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chromeos/audio/audio_handler.h"
#include "chrome/browser/extensions/system/system_api.h"
#include "content/public/browser/user_metrics.h"
namespace {
// Percent by which the volume should be changed when a volume key is pressed.
const double kStepPercentage = 4.0;
} // namespace
bool VolumeController::HandleVolumeMute(const ui::Accelerator& accelerator) {
if (accelerator.key_code() == ui::VKEY_F8)
content::RecordAction(content::UserMetricsAction("Accel_VolumeMute_F8"));
chromeos::AudioHandler* audio_handler = chromeos::AudioHandler::GetInstance();
// Always muting (and not toggling) as per final decision on
// http://crosbug.com/3751
audio_handler->SetMuted(true);
extensions::DispatchVolumeChangedEvent(audio_handler->GetVolumePercent(),
audio_handler->IsMuted());
return true;
}
bool VolumeController::HandleVolumeDown(const ui::Accelerator& accelerator) {
if (accelerator.key_code() == ui::VKEY_F9)
content::RecordAction(content::UserMetricsAction("Accel_VolumeDown_F9"));
chromeos::AudioHandler* audio_handler = chromeos::AudioHandler::GetInstance();
if (audio_handler->IsMuted())
audio_handler->SetVolumePercent(0.0);
else
audio_handler->AdjustVolumeByPercent(-kStepPercentage);
extensions::DispatchVolumeChangedEvent(audio_handler->GetVolumePercent(),
audio_handler->IsMuted());
return true;
}
bool VolumeController::HandleVolumeUp(const ui::Accelerator& accelerator) {
if (accelerator.key_code() == ui::VKEY_F10)
content::RecordAction(content::UserMetricsAction("Accel_VolumeUp_F10"));
chromeos::AudioHandler* audio_handler = chromeos::AudioHandler::GetInstance();
if (audio_handler->IsMuted()) {
audio_handler->SetMuted(false);
// If volume percent is still 0.0 after reset the mute status, it means that
// the mute status was done by VolumeDown, so we need to increase
// the volume as usual.
if (audio_handler->GetVolumePercent() == 0.0)
audio_handler->AdjustVolumeByPercent(kStepPercentage);
} else {
audio_handler->AdjustVolumeByPercent(kStepPercentage);
}
extensions::DispatchVolumeChangedEvent(audio_handler->GetVolumePercent(),
audio_handler->IsMuted());
return true;
}
void VolumeController::SetVolumePercent(double percent) {
chromeos::AudioHandler* audio_handler = chromeos::AudioHandler::GetInstance();
audio_handler->SetVolumePercent(percent);
extensions::DispatchVolumeChangedEvent(audio_handler->GetVolumePercent(),
audio_handler->IsMuted());
}
|