OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 /** | |
7 * This file defines the PPB_CameraCapabilities_Private interface for | |
8 * establishing an image capture configuration resource within the browser. | |
9 */ | |
10 | |
11 [generate_thunk] | |
12 | |
13 label Chrome { | |
14 M39 = 0.1 | |
15 }; | |
16 | |
17 /** | |
18 * The <code>PPB_CameraCapabilities_Private</code> interface contains pointers | |
19 * to several functions for getting the image capture capabilities within the | |
20 * browser. | |
21 */ | |
22 [version=0.1] | |
23 interface PPB_CameraCapabilities_Private { | |
24 /** | |
25 * IsCameraCapabilities() determines if the given resource is a | |
26 * <code>PPB_CameraCapabilities_Private</code>. | |
27 * | |
28 * @param[in] resource A <code>PP_Resource</code> corresponding to an image | |
29 * capture capabilities resource. | |
30 * | |
31 * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the given | |
32 * resource is an <code>PP_CameraCapabilities_Private</code> resource, | |
33 * otherwise <code>PP_FALSE</code>. | |
34 */ | |
35 PP_Bool IsCameraCapabilities( | |
36 [in] PP_Resource resource); | |
37 | |
38 /** | |
39 * GetSupportedPreviewSizes() returns the supported preview sizes for the give n | |
40 * <code>PPB_CameraCapabilities_Private</code>. | |
41 * | |
42 * @param[in] capabilities A <code>PP_Resource</code> corresponding to an | |
43 * image capture capabilities resource. | |
44 * @param[out] A NULL-terminated array of pointer to <code>PP_Size</code> | |
45 * corresponding to the supported preview sizes in pixels. The ownership of | |
46 * the array belongs to <code> PPB_CameraCapabilities_Private</code> and the | |
47 * caller should not free it. When a PPB_CameraCapabilities_Private is | |
48 * deleted, the array returning from this is no longer valid. | |
49 */ | |
50 void GetSupportedPreviewSizes( | |
51 [in] PP_Resource capabilities, | |
52 [out] PP_Size[] preview_sizes); | |
wuchengli
2014/08/12 10:16:42
As we discussed, [out] PP_Size[] (that is, PP_Size
Justin Chuang
2014/08/12 11:44:12
Lesson learned. Generating double pointers can be
| |
53 | |
54 /** | |
55 * GetSupportedJpegSize() returns the supported JPEG sizes for the given | |
56 * <code>PPB_CameraCapabilities_Private</code>. | |
57 * | |
58 * @param[in] capabilities A <code>PP_Resource</code> corresponding to an | |
59 * image capture capabilities resource. | |
60 * @param[out] A NULL-terminated array of pointer to <code>PP_Size</code> | |
61 * corresponding to the supported JPEG image sizes in pixels. The ownership | |
62 * of the array belongs to <code>PPB_CameraCapabilities_Private</code> and | |
63 * the caller should not free it. When a PPB_CameraCapabilities_Private is | |
64 * deleted, the array returning from this is no longer valid. | |
65 */ | |
66 void GetSupportedJpegSizes( | |
67 [in] PP_Resource capabilities, | |
68 [out] PP_Size[] jpeg_sizes); | |
69 }; | |
OLD | NEW |