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

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

Issue 2144333002: MuteSource Audio During Full Screen Cast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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/cras/cras_input.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « media/audio/audio_device_description.h ('k') | media/audio/cras/cras_input.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698