- From: Dominique Hazael-Massieux via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 02 Dec 2009 08:53:03 +0000
- To: public-dap-commits@w3.org
Update of /sources/public/2009/dap/camera In directory hutz:/tmp/cvs-serv12246 Modified Files: Overview.html Log Message: s/int/long/ s/MUST be greater than zero/unsigned/ Index: Overview.html =================================================================== RCS file: /sources/public/2009/dap/camera/Overview.html,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- Overview.html 2 Dec 2009 08:49:41 -0000 1.16 +++ Overview.html 2 Dec 2009 08:53:01 -0000 1.17 @@ -176,7 +176,7 @@ <a href="#captureerror-interface"><code>CaptureError</code></a> object as an argument. </li></ol> <p></p> -<dl class="parameters"><dt>CaptureCallback callback </dt><dd>Function to call when the asynchronous operation completes </dd><dt>int limit </dt><dd>Upper limit of images user can take. MUST be integer greater than zero. </dd><dt>optional ErrorCallback errorCB </dt><dd>Function to call when the asynchronous operation fails. This parameter is OPTIONAL. +<dl class="parameters"><dt>CaptureCallback callback </dt><dd>Function to call when the asynchronous operation completes </dd><dt>unsigned long limit </dt><dd>Upper limit of images user can take. </dd><dt>optional ErrorCallback errorCB </dt><dd>Function to call when the asynchronous operation fails. This parameter is OPTIONAL. </dd></dl> </dd><dt>PendingOperation captureVideo () </dt><dd> <p>Launch device native camera application for recording video(s).</p> @@ -192,7 +192,7 @@ <a href="#captureerror-interface"><code>CaptureError</code></a> object as an argument. </li></ol> <p></p> -<dl class="parameters"><dt>CaptureCallback callback </dt><dd>Function to call when the asynchronous operation completes </dd><dt>int limit </dt><dd>Upper limit of videos user can record. MUST be integer greater than zero. </dd><dt>double duration </dt><dd>Maxium duration of a single video clip in seconds. </dd><dt>optional ErrorCallback errorCB </dt><dd>Function to call when the asynchronous operation fails. This parameter is OPTIONAL. +<dl class="parameters"><dt>CaptureCallback callback </dt><dd>Function to call when the asynchronous operation completes </dd><dt>unsigned long limit </dt><dd>Upper limit of videos user can record. </dd><dt>double duration </dt><dd>Maxium duration of a single video clip in seconds. </dd><dt>optional ErrorCallback errorCB </dt><dd>Function to call when the asynchronous operation fails. This parameter is OPTIONAL. </dd></dl> </dd><dt>PendingOperation captureAudio () </dt><dd> <p>Launch device native audio recorder application for recording audio clip(s).</p> @@ -208,7 +208,7 @@ <a href="#captureerror-interface"><code>CaptureError</code></a> object as an argument. </li></ol> <p></p> -<dl class="parameters"><dt>CaptureCallback callback </dt><dd>Function to call when the asynchronous operation completes </dd><dt>int limit </dt><dd>Upper limit of sound clips user can record. MUST be integer greater than zero. +<dl class="parameters"><dt>CaptureCallback callback </dt><dd>Function to call when the asynchronous operation completes </dd><dt>unsigned long limit </dt><dd>Upper limit of sound clips user can record. </dd><dt>double duration </dt><dd>Maxium duration of a single sound clip in seconds. </dd><dt>optional ErrorCallback errorCB </dt><dd>Function to call when the asynchronous operation fails. This parameter is OPTIONAL. </dd></dl> </dd></dl> @@ -224,9 +224,9 @@ </p> <dl title="[NoInterfaceObject] interface FormatData" class="idl"><dt>attribute DOMString type </dt><dd>The type attribute represents the MIME type of the captured image, video or sound. For example, a valid MIME type for JPEG images is image/jpeg. A valid MIME type for WAV sound file is audio/x-wav. -</dd><dt>attribute int height </dt><dd>The height attribute represents height of the image or video in pixels. Not applicable for a sound clip. -</dd><dt>attribute int duration </dt><dd>The duration attribute represents length of the video or sound clip in seconds. Not applicable for a image. -</dd><dt>attribute int width </dt><dd>The width attribute represents width of the image or video in pixels. Not applicable for a sound clip. +</dd><dt>attribute unsigned long height </dt><dd>The height attribute represents height of the image or video in pixels. Not applicable for a sound clip. +</dd><dt>attribute unsigned long duration </dt><dd>The duration attribute represents length of the video or sound clip in seconds. Not applicable for a image. +</dd><dt>attribute unsigned long width </dt><dd>The width attribute represents width of the image or video in pixels. Not applicable for a sound clip. </dd></dl> </section><section id="successcallbak"><h3><a>SuccessCallback</a> interface</h3> <p class="note">This may be a general interface for use throughout all APIs. Included here for now for completion.</p>
Received on Wednesday, 2 December 2009 08:53:12 UTC