summaryrefslogtreecommitdiffstats
path: root/media/audio/audio_device_name.h
diff options
context:
space:
mode:
authorgarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-20 17:35:34 +0000
committergarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-20 17:35:34 +0000
commitd3086252752eb3782db8b8953833ba4fdbb14cfa (patch)
treef75af5c669737cee76965a35924fd9ce1e97478a /media/audio/audio_device_name.h
parent4e4e45cf87e61953f37d086a6ac70e1670c40f35 (diff)
downloadchromium_src-d3086252752eb3782db8b8953833ba4fdbb14cfa.zip
chromium_src-d3086252752eb3782db8b8953833ba4fdbb14cfa.tar.gz
chromium_src-d3086252752eb3782db8b8953833ba4fdbb14cfa.tar.bz2
Revert 106513 - The first step to add device selection to linux.
This patch will loop through the soundcard and return a list of available devices when the AudioInputDeviceManager does the device enumeration. Previously, only default device will be returned. Reverted because this CL caused the Linux/Windows (shared) builds to fail. Review URL: http://codereview.chromium.org/8162015 TBR=xians@chromium.org Review URL: http://codereview.chromium.org/8362004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106517 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/audio/audio_device_name.h')
-rw-r--r--media/audio/audio_device_name.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/media/audio/audio_device_name.h b/media/audio/audio_device_name.h
index 87c9281..ef3cd77 100644
--- a/media/audio/audio_device_name.h
+++ b/media/audio/audio_device_name.h
@@ -11,10 +11,7 @@
namespace media {
struct AudioDeviceName {
- AudioDeviceName();
- AudioDeviceName(std::string device_name, std::string unique_id);
-
- std::string device_name; // Friendly name of the device.
+ std::string device_name; // Name and also display name of the device.
std::string unique_id; // Unique identifier for the device.
};