summaryrefslogtreecommitdiffstats
path: root/ppapi/api
diff options
context:
space:
mode:
authorbbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-08 20:38:31 +0000
committerbbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-08 20:38:31 +0000
commit00b667d58f82f53a9037de4eb4e81d7565b3c63b (patch)
tree65825e27481a99d98d65ac86c40572e6fed8067e /ppapi/api
parent73ae0f3ea90c5913d66f88b69b4c0c62bec48781 (diff)
downloadchromium_src-00b667d58f82f53a9037de4eb4e81d7565b3c63b.zip
chromium_src-00b667d58f82f53a9037de4eb4e81d7565b3c63b.tar.gz
chromium_src-00b667d58f82f53a9037de4eb4e81d7565b3c63b.tar.bz2
Change PPB_VideoWriter Open function to return stream_id as out param.
BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/13726021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192883 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r--ppapi/api/ppb_video_writer.idl6
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/api/ppb_video_writer.idl b/ppapi/api/ppb_video_writer.idl
index e1a7757..cf92f3e 100644
--- a/ppapi/api/ppb_video_writer.idl
+++ b/ppapi/api/ppb_video_writer.idl
@@ -44,8 +44,8 @@ interface PPB_VideoWriter {
*
* @param[in] writer A <code>PP_Resource</code> corresponding to a video
* writer resource.
- * @param[in] stream_id A <code>PP_Var</code> holding a string uniquely
- * identifying the stream. This string is application defined.
+ * @param[out] stream_id A <code>PP_Var</code> holding a string uniquely
+ * identifying the stream. This string is generated by the host.
* @param[in] callback A <code>PP_CompletionCallback</code> to be called upon
* completion of Open().
*
@@ -54,7 +54,7 @@ interface PPB_VideoWriter {
* Returns PP_ERROR_INPROGRESS if the writer has already opened a stream.
*/
int32_t Open([in] PP_Resource writer,
- [in] PP_Var stream_id,
+ [out] PP_Var stream_id,
[in] PP_CompletionCallback callback);
/**