blob: 662fdec6d97518bde141711e8bc60460202d3421 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
// 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.
#ifndef CHROME_BROWSER_CHROMEOS_AUDIO_AUDIO_HANDLER_H_
#define CHROME_BROWSER_CHROMEOS_AUDIO_AUDIO_HANDLER_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/observer_list.h"
#include "base/prefs/public/pref_change_registrar.h"
#include "base/threading/thread.h"
template <typename T> struct DefaultSingletonTraits;
class PrefChangeRegistrar;
class PrefRegistrySimple;
class PrefService;
namespace chromeos {
class AudioMixer;
class AudioHandler {
public:
class VolumeObserver {
public:
virtual void OnVolumeChanged() = 0;
virtual void OnMuteToggled() = 0;
protected:
VolumeObserver() {}
virtual ~VolumeObserver() {}
DISALLOW_COPY_AND_ASSIGN(VolumeObserver);
};
static void Initialize();
static void Shutdown();
// Same as Initialize but using the specified audio mixer. It takes
// ownership of |mixer|.
static void InitializeForTesting(AudioMixer* mixer);
// GetInstance returns NULL if not initialized or if already shutdown.
static AudioHandler* GetInstance();
// Registers volume and mute preferences.
static void RegisterPrefs(PrefRegistrySimple* registry);
// Gets volume level in our internal 0-100% range, 0 being pure silence.
double GetVolumePercent();
// Sets volume level from 0-100%. If less than kMuteThresholdPercent, then
// mutes the sound. If it was muted, and |volume_percent| is larger than
// the threshold, then the sound is unmuted.
void SetVolumePercent(double volume_percent);
// Adjusts volume up (positive percentage) or down (negative percentage).
void AdjustVolumeByPercent(double adjust_by_percent);
// Is the volume currently muted?
bool IsMuted();
// Mutes or unmutes all audio.
void SetMuted(bool do_mute);
// Is the capture volume currently muted?
bool IsCaptureMuted();
// Mutes or unmutes all capture devices. If unmutes and the volume was set
// to 0, then increases volume to a minimum value (5%).
void SetCaptureMuted(bool do_mute);
void AddVolumeObserver(VolumeObserver* observer);
void RemoveVolumeObserver(VolumeObserver* observer);
private:
// Defines the delete on exit Singleton traits we like. Best to have this
// and constructor/destructor private as recommended for Singletons.
friend struct DefaultSingletonTraits<AudioHandler>;
// Takes ownership of |mixer|.
explicit AudioHandler(AudioMixer* mixer);
virtual ~AudioHandler();
// Initializes the observers for the policy prefs.
void InitializePrefObservers();
// Applies the audio muting policies whenever the user logs in or policy
// change notification is received.
void ApplyAudioPolicy();
// Sets volume to specified value and notifies observers.
void SetVolumePercentInternal(double volume_percent);
scoped_ptr<AudioMixer> mixer_;
ObserverList<VolumeObserver> volume_observers_;
PrefService* local_state_; // not owned
PrefChangeRegistrar pref_change_registrar_;
DISALLOW_COPY_AND_ASSIGN(AudioHandler);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_AUDIO_AUDIO_HANDLER_H_
|