OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
Justin Chuang
2014/08/11 08:32:35
nit: copyright disclaimer no longer contains "(c)"
wuchengli
2014/08/12 07:27:02
Done.
| |
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] array_size The size of preview size array. | |
45 * @param[out] An array of <code>PP_Size</code> corresponding to the supported | |
46 * preview sizes in pixels. The ownership of the array belongs to <code> | |
47 * PPB_CameraCapabilities_Private</code> and the caller should not free it. | |
dmichael (off chromium)
2014/08/08 21:13:05
Ah, I see! That sounds like a good approach in thi
wuchengli
2014/08/12 07:27:02
Acknowledged.
| |
48 */ | |
49 void GetSupportedPreviewSizes( | |
50 [in] PP_Resource capabilities, | |
51 [out] int32_t array_size, | |
52 [out, size_is(array_size)] PP_Size[] preview_sizes); | |
dmichael (off chromium)
2014/08/08 21:23:07
By the way, in case it isn't obvious... you'll wa
wuchengli
2014/08/12 07:27:02
Done. I added the comments.
| |
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] array_size The size of JPEG size array. If the output of this | |
61 * is 0, the camera has no support for generating JPEG images. | |
62 * @param[out] An array of <code>PP_Size</code> corresponding to the supported | |
63 * JPEG image sizes in pixels. The ownership of the array belongs to <code> | |
64 * PPB_CameraCapabilities_Private</code> and the caller should not free it. | |
65 */ | |
66 void GetSupportedJpegSizes( | |
dmichael (off chromium)
2014/08/08 21:13:05
I assume you expect this resource to have its data
wuchengli
2014/08/12 07:27:01
Yes. The data is completely on the plugin-side and
| |
67 [in] PP_Resource capabilities, | |
68 [out] int32_t array_size, | |
69 [out, size_is(array_size)] PP_Size[] jpeg_sizes); | |
70 }; | |
OLD | NEW |