| 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_DEVICE_H_ | 5 #ifndef CHROMEOS_AUDIO_AUDIO_DEVICE_H_ |
| 6 #define CHROMEOS_AUDIO_AUDIO_DEVICE_H_ | 6 #define CHROMEOS_AUDIO_AUDIO_DEVICE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "chromeos/chromeos_export.h" | 13 #include "chromeos/chromeos_export.h" |
| 14 #include "chromeos/dbus/audio_node.h" | 14 #include "chromeos/dbus/audio_node.h" |
| 15 | 15 |
| 16 namespace chromeos { | 16 namespace chromeos { |
| 17 | 17 |
| 18 // Ordered from the highest priority to the lowest. | 18 // Ordered from the highest priority to the lowest. |
| 19 enum AudioDeviceType { | 19 enum AudioDeviceType { |
| 20 AUDIO_TYPE_HEADPHONE, | 20 AUDIO_TYPE_HEADPHONE, |
| 21 AUDIO_TYPE_MIC, | 21 AUDIO_TYPE_MIC, |
| 22 AUDIO_TYPE_USB, | 22 AUDIO_TYPE_USB, |
| 23 AUDIO_TYPE_BLUETOOTH, | 23 AUDIO_TYPE_BLUETOOTH, |
| 24 AUDIO_TYPE_HDMI, | 24 AUDIO_TYPE_HDMI, |
| 25 AUDIO_TYPE_INTERNAL_SPEAKER, | 25 AUDIO_TYPE_INTERNAL_SPEAKER, |
| 26 AUDIO_TYPE_INTERNAL_MIC, | 26 AUDIO_TYPE_INTERNAL_MIC, |
| 27 AUDIO_TYPE_KEYBOARD_MIC, | 27 AUDIO_TYPE_KEYBOARD_MIC, |
| 28 AUDIO_TYPE_AOKR, | 28 AUDIO_TYPE_AOKR, |
| 29 AUDIO_TYPE_POST_MIX_LOOPBACK, |
| 30 AUDIO_TYPE_POST_DSP_LOOPBACK, |
| 29 AUDIO_TYPE_OTHER, | 31 AUDIO_TYPE_OTHER, |
| 30 }; | 32 }; |
| 31 | 33 |
| 32 struct CHROMEOS_EXPORT AudioDevice { | 34 struct CHROMEOS_EXPORT AudioDevice { |
| 33 AudioDevice(); | 35 AudioDevice(); |
| 34 explicit AudioDevice(const AudioNode& node); | 36 explicit AudioDevice(const AudioNode& node); |
| 35 std::string ToString() const; | 37 std::string ToString() const; |
| 36 | 38 |
| 37 // Converts between the string type sent via D-Bus and AudioDeviceType. | 39 // Converts between the string type sent via D-Bus and AudioDeviceType. |
| 38 // Static so they can be used by tests. | 40 // Static so they can be used by tests. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 69 return true; | 71 return true; |
| 70 } else { | 72 } else { |
| 71 return false; | 73 return false; |
| 72 } | 74 } |
| 73 } | 75 } |
| 74 }; | 76 }; |
| 75 | 77 |
| 76 } // namespace chromeos | 78 } // namespace chromeos |
| 77 | 79 |
| 78 #endif // CHROMEOS_AUDIO_AUDIO_DEVICE_H_ | 80 #endif // CHROMEOS_AUDIO_AUDIO_DEVICE_H_ |
| OLD | NEW |