Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(636)

Side by Side Diff: media/audio/audio_device_description.cc

Issue 1892433002: Moving device description utils from AudioManager[Base] into AudioDeviceDescription; to be shared b… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/audio/audio_device_description.h ('k') | media/audio/audio_device_name.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « media/audio/audio_device_description.h ('k') | media/audio/audio_device_name.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698