blob: 89e4b7b35b0d8384fc987d57d1129f8ff26c84e1 (
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
|
// Copyright (c) 2013 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 CHROMEOS_AUDIO_AUDIO_PREF_HANDLER_H_
#define CHROMEOS_AUDIO_AUDIO_PREF_HANDLER_H_
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "chromeos/audio/audio_pref_observer.h"
#include "chromeos/chromeos_export.h"
class PrefRegistrySimple;
namespace chromeos {
// TODO(jennyz,rkc): This class will be removed once we remove the old Audio
// Handler code.
// Interface that handles audio preference related work, reads and writes
// audio preferences, and notifies AudioPrefObserver for audio preference
// changes.
class CHROMEOS_EXPORT AudioPrefHandler
: public base::RefCountedThreadSafe<AudioPrefHandler> {
public:
// Gets the audio output volume value from prefs.
virtual double GetOutputVolumeValue() = 0;
// Sets the output audio volume value to prefs.
virtual void SetOutputVolumeValue(double volume_percent) = 0;
// Reads the audio output mute value from prefs.
virtual bool GetOutputMuteValue() = 0;
// Sets the audio output mute value to prefs.
virtual void SetOutputMuteValue(bool mute_on) = 0;
// Reads the audio capture allowed value from prefs.
virtual bool GetAudioCaptureAllowedValue() = 0;
// Sets the audio output allowed value from prefs.
virtual bool GetAudioOutputAllowedValue() = 0;
// Adds an audio preference observer.
virtual void AddAudioPrefObserver(AudioPrefObserver* observer) = 0;
// Removes an audio preference observer.
virtual void RemoveAudioPrefObserver(AudioPrefObserver* observer) = 0;
// Creates the instance.
static AudioPrefHandler* Create(PrefService* local_state);
protected:
virtual ~AudioPrefHandler() {}
private:
friend class base::RefCountedThreadSafe<AudioPrefHandler>;
};
} // namespace chromeos
#endif // CHROMEOS_AUDIO_AUDIO_PREF_HANDLER_H_
|