OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_STUB_H_ | 5 #ifndef CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_STUB_H_ |
6 #define CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_STUB_H_ | 6 #define CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_STUB_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "chromeos/audio/audio_devices_pref_handler.h" | 11 #include "chromeos/audio/audio_devices_pref_handler.h" |
12 | 12 |
13 namespace chromeos { | 13 namespace chromeos { |
14 | 14 |
15 // Stub class for AudioDevicesPrefHandler, used for testing. | 15 // Stub class for AudioDevicesPrefHandler, used for testing. |
16 class CHROMEOS_EXPORT AudioDevicesPrefHandlerStub | 16 class CHROMEOS_EXPORT AudioDevicesPrefHandlerStub |
17 : public AudioDevicesPrefHandler { | 17 : public AudioDevicesPrefHandler { |
18 public: | 18 public: |
19 using AudioDeviceMute = std::map<uint64_t, bool>; | 19 using AudioDeviceMute = std::map<uint64_t, bool>; |
20 using AudioDeviceVolumeGain = std::map<uint64_t, int>; | 20 using AudioDeviceVolumeGain = std::map<uint64_t, int>; |
21 | 21 |
22 AudioDevicesPrefHandlerStub(); | 22 AudioDevicesPrefHandlerStub(); |
23 | 23 |
24 // AudioDevicesPrefHandler: | 24 // AudioDevicesPrefHandler: |
25 double GetOutputVolumeValue(const AudioDevice* device) override; | 25 double GetOutputVolumeValue(const AudioDevice* device) override; |
26 double GetInputGainValue(const AudioDevice* device) override; | 26 double GetInputGainValue(const AudioDevice* device) override; |
27 void SetVolumeGainValue(const AudioDevice& device, double value) override; | 27 void SetVolumeGainValue(const AudioDevice& device, double value) override; |
28 bool GetMuteValue(const AudioDevice& device) override; | 28 bool GetMuteValue(const AudioDevice& device) override; |
29 void SetMuteValue(const AudioDevice& device, bool mute_on) override; | 29 void SetMuteValue(const AudioDevice& device, bool mute_on) override; |
30 bool GetAudioCaptureAllowedValue() override; | |
31 bool GetAudioOutputAllowedValue() override; | 30 bool GetAudioOutputAllowedValue() override; |
32 void AddAudioPrefObserver(AudioPrefObserver* observer) override; | 31 void AddAudioPrefObserver(AudioPrefObserver* observer) override; |
33 void RemoveAudioPrefObserver(AudioPrefObserver* observer) override; | 32 void RemoveAudioPrefObserver(AudioPrefObserver* observer) override; |
34 | 33 |
35 protected: | 34 protected: |
36 ~AudioDevicesPrefHandlerStub() override; | 35 ~AudioDevicesPrefHandlerStub() override; |
37 | 36 |
38 private: | 37 private: |
39 AudioDeviceMute audio_device_mute_map_; | 38 AudioDeviceMute audio_device_mute_map_; |
40 AudioDeviceVolumeGain audio_device_volume_gain_map_; | 39 AudioDeviceVolumeGain audio_device_volume_gain_map_; |
41 | 40 |
42 DISALLOW_COPY_AND_ASSIGN(AudioDevicesPrefHandlerStub); | 41 DISALLOW_COPY_AND_ASSIGN(AudioDevicesPrefHandlerStub); |
43 }; | 42 }; |
44 | 43 |
45 } // namespace chromeos | 44 } // namespace chromeos |
46 | 45 |
47 #endif // CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_STUB_H_ | 46 #endif // CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_STUB_H_ |
OLD | NEW |