| Index: media/audio/win/device_enumeration_win.h
|
| diff --git a/media/audio/win/device_enumeration_win.h b/media/audio/win/device_enumeration_win.h
|
| index e61a331842a742ba4bd2639a4b9f5213edda29c2..681bf59e7cb1198008b73193b68f88f3209f075e 100644
|
| --- a/media/audio/win/device_enumeration_win.h
|
| +++ b/media/audio/win/device_enumeration_win.h
|
| @@ -21,23 +21,14 @@ namespace media {
|
| bool GetInputDeviceNamesWin(media::AudioDeviceNames* device_names);
|
| bool GetOutputDeviceNamesWin(media::AudioDeviceNames* device_names);
|
|
|
| -// Returns a list of audio input or output device structures (name and
|
| +// Returns a list of audio output device structures (name and
|
| // unique device ID) using the WaveIn API which is supported on
|
| // Windows XP and higher.
|
| // Example record in the output list:
|
| // - device_name: "Microphone (Realtek High Defini".
|
| // - unique_id: "Microphone (Realtek High Defini" (same as friendly name).
|
| -bool GetInputDeviceNamesWinXP(media::AudioDeviceNames* device_names);
|
| bool GetOutputDeviceNamesWinXP(media::AudioDeviceNames* device_names);
|
|
|
| -// Converts an input device ID generated by |GetInputDeviceNamesWin()| to the
|
| -// corresponding ID by |GetInputDeviceNamesWinXP()|. Returns an empty string on
|
| -// failure.
|
| -// Example input and output:
|
| -// - input ID: "{0.0.1.00000000}.{8db6020f-18e3-4f25-b6f5-7726c9122574}"
|
| -// - output ID: "Microphone (Realtek High Defini"
|
| -std::string ConvertToWinXPInputDeviceId(const std::string& device_id);
|
| -
|
| } // namespace media
|
|
|
| #endif // MEDIA_AUDIO_WIN_DEVICE_ENUMERATION_WIN_H_
|
|
|