| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "media/audio/audio_device_description.h" | 6 #include "media/audio/audio_device_description.h" |
| 7 #include "media/base/media_resources.h" | 7 #include "media/base/media_resources.h" |
| 8 | 8 |
| 9 namespace media { | 9 namespace media { |
| 10 const char AudioDeviceDescription::kDefaultDeviceId[] = "default"; | 10 const char AudioDeviceDescription::kDefaultDeviceId[] = "default"; |
| 11 const char AudioDeviceDescription::kCommunicationsDeviceId[] = "communications"; | 11 const char AudioDeviceDescription::kCommunicationsDeviceId[] = "communications"; |
| 12 const char AudioDeviceDescription::kLoopbackInputDeviceId[] = "loopback"; | 12 const char AudioDeviceDescription::kLoopbackInputDeviceId[] = "loopback"; |
| 13 const char AudioDeviceDescription::kLoopbackWithMuteDeviceId[] = |
| 14 "loopbackWithMute"; |
| 13 | 15 |
| 14 // static | 16 // static |
| 15 bool AudioDeviceDescription::IsDefaultDevice(const std::string& device_id) { | 17 bool AudioDeviceDescription::IsDefaultDevice(const std::string& device_id) { |
| 16 return device_id.empty() || | 18 return device_id.empty() || |
| 17 device_id == AudioDeviceDescription::kDefaultDeviceId; | 19 device_id == AudioDeviceDescription::kDefaultDeviceId; |
| 18 } | 20 } |
| 19 | 21 |
| 20 // static | 22 // static |
| 21 bool AudioDeviceDescription::UseSessionIdToSelectDevice( | 23 bool AudioDeviceDescription::UseSessionIdToSelectDevice( |
| 22 int session_id, | 24 int session_id, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 38 std::string AudioDeviceDescription::GetCommunicationsDeviceName() { | 40 std::string AudioDeviceDescription::GetCommunicationsDeviceName() { |
| 39 #if defined(OS_WIN) | 41 #if defined(OS_WIN) |
| 40 return GetLocalizedStringUTF8(COMMUNICATIONS_AUDIO_DEVICE_NAME); | 42 return GetLocalizedStringUTF8(COMMUNICATIONS_AUDIO_DEVICE_NAME); |
| 41 #else | 43 #else |
| 42 NOTREACHED(); | 44 NOTREACHED(); |
| 43 return ""; | 45 return ""; |
| 44 #endif | 46 #endif |
| 45 } | 47 } |
| 46 | 48 |
| 47 } // namespace media | 49 } // namespace media |
| OLD | NEW |