diff options
author | yzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-05 02:44:18 +0000 |
---|---|---|
committer | yzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-05 02:44:18 +0000 |
commit | 4f01c76ed760e674cb86f2b0a17a779431e2aa71 (patch) | |
tree | a2d874fb3f21b65e07f0d75db567487f6bd4a38a /ppapi/thunk/ppb_audio_input_api.h | |
parent | 4afef6e27ecbcf6430c5d37881eca04c6b1f8d78 (diff) | |
download | chromium_src-4f01c76ed760e674cb86f2b0a17a779431e2aa71.zip chromium_src-4f01c76ed760e674cb86f2b0a17a779431e2aa71.tar.gz chromium_src-4f01c76ed760e674cb86f2b0a17a779431e2aa71.tar.bz2 |
Introduce PPB_AudioInput_Dev v0.3 and refactor the device enumeration code:
- Add MonitorDeviceChange() for PPB_AudioInput_Dev.
- Change EnumerateDevices() to use PP_ArrayOutput.
- Move device enumeration code out of the audio input implementation, so that it can be shared by video capture.
- Update the audio_input manual test.
- Add unittests for the device enumeration code.
TEST=None
BUG=137799
Review URL: https://chromiumcodereview.appspot.com/11411047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171132 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk/ppb_audio_input_api.h')
-rw-r--r-- | ppapi/thunk/ppb_audio_input_api.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ppapi/thunk/ppb_audio_input_api.h b/ppapi/thunk/ppb_audio_input_api.h index e820c08..2e7b818 100644 --- a/ppapi/thunk/ppb_audio_input_api.h +++ b/ppapi/thunk/ppb_audio_input_api.h @@ -20,8 +20,13 @@ class PPB_AudioInput_API { public: virtual ~PPB_AudioInput_API() {} - virtual int32_t EnumerateDevices(PP_Resource* devices, + virtual int32_t EnumerateDevices0_2( + PP_Resource* devices, + scoped_refptr<TrackedCallback> callback) = 0; + virtual int32_t EnumerateDevices(const PP_ArrayOutput& output, scoped_refptr<TrackedCallback> callback) = 0; + virtual int32_t MonitorDeviceChange(PP_MonitorDeviceChangeCallback callback, + void* user_data) = 0; virtual int32_t Open(const std::string& device_id, PP_Resource config, PPB_AudioInput_Callback audio_input_callback, |