diff options
author | xians@chromium.org <xians@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 06:38:23 +0000 |
---|---|---|
committer | xians@chromium.org <xians@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 06:38:23 +0000 |
commit | 76f9f04ee46b731646f29e9dfb6dbba3fc878684 (patch) | |
tree | ead968bded0d412053f1af6177089a62c94522f2 /media/audio/audio_input_controller.h | |
parent | 51445e340fc6255dc73303d11f9db4dcc69021ed (diff) | |
download | chromium_src-76f9f04ee46b731646f29e9dfb6dbba3fc878684.zip chromium_src-76f9f04ee46b731646f29e9dfb6dbba3fc878684.tar.gz chromium_src-76f9f04ee46b731646f29e9dfb6dbba3fc878684.tar.bz2 |
added device selection to web speech to use the correct device. Users should be able to choose which microphone to be used via UI.
BUG=112472
TEST=https://www.google.com/intl/en/chrome/demos/speech.html
verify we can use different device to do the speech recognition.
Review URL: https://chromiumcodereview.appspot.com/17377003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207328 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/audio/audio_input_controller.h')
-rw-r--r-- | media/audio/audio_input_controller.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/media/audio/audio_input_controller.h b/media/audio/audio_input_controller.h index 1200aa8..6b1d1e7 100644 --- a/media/audio/audio_input_controller.h +++ b/media/audio/audio_input_controller.h @@ -122,11 +122,12 @@ class MEDIA_EXPORT AudioInputController // Factory method for creating an AudioInputController. // The audio device will be created on the audio thread, and when that is // done, the event handler will receive an OnCreated() call from that same - // thread. + // thread. |device_id| is the unique ID of the audio device to be opened. static scoped_refptr<AudioInputController> Create( AudioManager* audio_manager, EventHandler* event_handler, - const AudioParameters& params); + const AudioParameters& params, + const std::string& device_id); // Sets the factory used by the static method Create(). AudioInputController // does not take ownership of |factory|. A value of NULL results in an |