diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-03 18:29:00 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-03 18:29:00 +0000 |
commit | d2bdede997ce7f623574c1cd6303bbf16b55c3be (patch) | |
tree | 401fadb1c2b74638b3700c2858571d146e0fc6ba /media/audio/audio_manager.h | |
parent | 3e4aa6e56c53980620c8a19a338cd3a1767b37e0 (diff) | |
download | chromium_src-d2bdede997ce7f623574c1cd6303bbf16b55c3be.zip chromium_src-d2bdede997ce7f623574c1cd6303bbf16b55c3be.tar.gz chromium_src-d2bdede997ce7f623574c1cd6303bbf16b55c3be.tar.bz2 |
Correct include guard, and enforce array parameter starts empty.
BUG=none
Review URL: https://chromiumcodereview.appspot.com/23687004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220984 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/audio/audio_manager.h')
-rw-r--r-- | media/audio/audio_manager.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/media/audio/audio_manager.h b/media/audio/audio_manager.h index 59104f7..2813d54 100644 --- a/media/audio/audio_manager.h +++ b/media/audio/audio_manager.h @@ -58,8 +58,9 @@ class MEDIA_EXPORT AudioManager { // threads to avoid blocking the rest of the application. virtual void ShowAudioInputSettings() = 0; - // Appends a list of available input devices. It is not guaranteed that - // all the devices in the list support all formats and sample rates for + // Appends a list of available input devices to |device_names|, + // which must initially be empty. It is not guaranteed that all the + // devices in the list support all formats and sample rates for // recording. virtual void GetAudioInputDeviceNames(AudioDeviceNames* device_names) = 0; |