| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "base/logging.h" |
| 6 #include "media/audio/audio_device_description.h" |
| 7 #include "media/base/media_resources.h" |
| 8 |
| 9 namespace media { |
| 10 const char AudioDeviceDescription::kDefaultDeviceId[] = "default"; |
| 11 const char AudioDeviceDescription::kCommunicationsDeviceId[] = "communications"; |
| 12 const char AudioDeviceDescription::kLoopbackInputDeviceId[] = "loopback"; |
| 13 |
| 14 // static |
| 15 bool AudioDeviceDescription::IsDefaultDevice(const std::string& device_id) { |
| 16 return device_id.empty() || |
| 17 device_id == AudioDeviceDescription::kDefaultDeviceId; |
| 18 } |
| 19 |
| 20 // static |
| 21 bool AudioDeviceDescription::UseSessionIdToSelectDevice( |
| 22 int session_id, |
| 23 const std::string& device_id) { |
| 24 return session_id && device_id.empty(); |
| 25 } |
| 26 |
| 27 // static |
| 28 std::string AudioDeviceDescription::GetDefaultDeviceName() { |
| 29 #if !defined(OS_IOS) |
| 30 return GetLocalizedStringUTF8(DEFAULT_AUDIO_DEVICE_NAME); |
| 31 #else |
| 32 NOTREACHED(); |
| 33 return ""; |
| 34 #endif |
| 35 } |
| 36 |
| 37 // static |
| 38 std::string AudioDeviceDescription::GetCommunicationsDeviceName() { |
| 39 #if defined(OS_WIN) |
| 40 return GetLocalizedStringUTF8(COMMUNICATIONS_AUDIO_DEVICE_NAME); |
| 41 #else |
| 42 NOTREACHED(); |
| 43 return ""; |
| 44 #endif |
| 45 } |
| 46 |
| 47 } // namespace media |
| OLD | NEW |