OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROMEOS_AUDIO_AUDIO_PREF_HANDLER_H_ |
| 6 #define CHROMEOS_AUDIO_AUDIO_PREF_HANDLER_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/memory/ref_counted.h" |
| 10 #include "chromeos/audio/audio_pref_observer.h" |
| 11 #include "chromeos/chromeos_export.h" |
| 12 |
| 13 class PrefRegistrySimple; |
| 14 |
| 15 namespace chromeos { |
| 16 |
| 17 // Interface that handles audio preference related work, reads and writes |
| 18 // audio preferences, and notifies AudioPrefObserver for audio preference |
| 19 // changes. |
| 20 class CHROMEOS_EXPORT AudioPrefHandler |
| 21 : public base::RefCountedThreadSafe<AudioPrefHandler> { |
| 22 public: |
| 23 // Gets the audio output volume value from prefs. |
| 24 virtual double GetOutputVolumeValue() = 0; |
| 25 |
| 26 // Sets the output audio volume value to prefs. |
| 27 virtual void SetOutputVolumeValue(double volume_percent) = 0; |
| 28 |
| 29 // Reads the audio output mute value from prefs. |
| 30 virtual bool GetOutputMuteValue() = 0; |
| 31 |
| 32 // Sets the audio output mute value to prefs. |
| 33 virtual void SetOutputMuteValue(bool mute_on) = 0; |
| 34 |
| 35 // Reads the audio capture allowed value from prefs. |
| 36 virtual bool GetAudioCaptureAllowedValue() = 0; |
| 37 |
| 38 // Sets the audio output allowed value from prefs. |
| 39 virtual bool GetAudioOutputAllowedValue() = 0; |
| 40 |
| 41 // Adds an audio preference observer. |
| 42 virtual void AddAudioPrefObserver(AudioPrefObserver* observer) = 0; |
| 43 |
| 44 // Removes an audio preference observer. |
| 45 virtual void RemoveAudioPrefObserver(AudioPrefObserver* observer) = 0; |
| 46 |
| 47 // Creates the instance. |
| 48 static AudioPrefHandler* Create(PrefService* local_state); |
| 49 |
| 50 protected: |
| 51 virtual ~AudioPrefHandler() {} |
| 52 |
| 53 private: |
| 54 friend class base::RefCountedThreadSafe<AudioPrefHandler>; |
| 55 }; |
| 56 |
| 57 } // namespace chromeos |
| 58 |
| 59 #endif // CHROMEOS_AUDIO_AUDIO_PREF_HANDLER_H_ |
OLD | NEW |