Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Unified Diff: ppapi/api/private/ppb_camera_capabilities_private.idl

Issue 490433002: PPAPI: make generator output a pointer to an array correctly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ppapi/api/private/ppp_flash_browser_operations.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/ppb_camera_capabilities_private.idl
diff --git a/ppapi/api/private/ppb_camera_capabilities_private.idl b/ppapi/api/private/ppb_camera_capabilities_private.idl
index 13b47d1b2b503e22c317eecfd6c4193c0990aeb0..57c7421997f9da1c290e58b19294d3dd72de876d 100644
--- a/ppapi/api/private/ppb_camera_capabilities_private.idl
+++ b/ppapi/api/private/ppb_camera_capabilities_private.idl
@@ -53,11 +53,11 @@ interface PPB_CameraCapabilities_Private {
* @param[in] capabilities A <code>PP_Resource</code> corresponding to an
* image capture capabilities resource.
* @param[out] array_size The size of preview size array.
- * @param[out] An array of <code>PP_Size</code> corresponding to the
- * supported preview sizes in pixels. The ownership of the array belongs to
- * <code>PPB_CameraCapabilities_Private</code> and the caller should not
- * free it. When a PPB_CameraCapabilities_Private is deleted, the array
- * returning from this is no longer valid.
+ * @param[out] preview_sizes An array of <code>PP_Size</code> corresponding
+ * to the supported preview sizes in pixels. The ownership of the array
+ * belongs to <code>PPB_CameraCapabilities_Private</code> and the caller
+ * should not free it. When a PPB_CameraCapabilities_Private is deleted,
+ * the array returning from this is no longer valid.
*/
void GetSupportedPreviewSizes(
[in] PP_Resource capabilities,
@@ -72,11 +72,11 @@ interface PPB_CameraCapabilities_Private {
* image capture capabilities resource.
* @param[out] array_size The size of JPEG size array. If the output of this
* is 0, the camera has no support for generating JPEG images.
- * @param[out] An array of <code>PP_Size</code> corresponding to the
- * supported JPEG image sizes in pixels. The ownership of the array belongs
- * to <code>PPB_CameraCapabilities_Private</code> and the caller should not
- * free it. When a PPB_CameraCapabilities_Private is deleted, the array
- * returning from this is no longer valid.
+ * @param[out] jpeg_sizes An array of <code>PP_Size</code> corresponding to
+ * the supported JPEG image sizes in pixels. The ownership of the array
+ * belongs to <code>PPB_CameraCapabilities_Private</code> and the caller
+ * should not free it. When a PPB_CameraCapabilities_Private is deleted, the
+ * array returning from this is no longer valid.
*/
void GetSupportedJpegSizes(
[in] PP_Resource capabilities,
« no previous file with comments | « no previous file | ppapi/api/private/ppp_flash_browser_operations.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698