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

Side by Side Diff: ppapi/c/private/ppb_camera_capabilities_private.h

Issue 391323002: Pepper: add Image Capture interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 /* From private/ppb_camera_capabilities_private.idl,
7 * modified Tue Aug 12 14:54:03 2014.
8 */
9
10 #ifndef PPAPI_C_PRIVATE_PPB_CAMERA_CAPABILITIES_PRIVATE_H_
11 #define PPAPI_C_PRIVATE_PPB_CAMERA_CAPABILITIES_PRIVATE_H_
12
13 #include "ppapi/c/pp_bool.h"
14 #include "ppapi/c/pp_macros.h"
15 #include "ppapi/c/pp_resource.h"
16 #include "ppapi/c/pp_size.h"
17 #include "ppapi/c/pp_stdint.h"
18
19 #define PPB_CAMERACAPABILITIES_PRIVATE_INTERFACE_0_1 \
20 "PPB_CameraCapabilities_Private;0.1"
21 #define PPB_CAMERACAPABILITIES_PRIVATE_INTERFACE \
22 PPB_CAMERACAPABILITIES_PRIVATE_INTERFACE_0_1
23
24 /**
25 * @file
26 * This file defines the PPB_CameraCapabilities_Private interface for
27 * establishing an image capture configuration resource within the browser.
28 */
29
30
31 /**
32 * @addtogroup Interfaces
33 * @{
34 */
35 /**
36 * The <code>PPB_CameraCapabilities_Private</code> interface contains pointers
37 * to several functions for getting the image capture capabilities within the
38 * browser.
39 */
40 struct PPB_CameraCapabilities_Private_0_1 {
41 /**
42 * IsCameraCapabilities() determines if the given resource is a
43 * <code>PPB_CameraCapabilities_Private</code>.
44 *
45 * @param[in] resource A <code>PP_Resource</code> corresponding to an image
46 * capture capabilities resource.
47 *
48 * @return A <code>PP_Bool</code> containing <code>PP_TRUE</code> if the given
49 * resource is an <code>PP_CameraCapabilities_Private</code> resource,
50 * otherwise <code>PP_FALSE</code>.
51 */
52 PP_Bool (*IsCameraCapabilities)(PP_Resource resource);
53 /**
54 * GetSupportedPreviewSizes(
55 ) returns the supported preview 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 preview sizes in pixels. The ownership of
62 * the array belongs to <code> PPB_CameraCapabilities_Private</code> and the
63 * 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 (*GetSupportedPreviewSizes)(PP_Resource capabilities,
67 struct PP_Size* preview_sizes[]);
68 /**
69 * GetSupportedJpegSize() returns the supported JPEG sizes for the given
70 * <code>PPB_CameraCapabilities_Private</code>.
71 *
72 * @param[in] capabilities A <code>PP_Resource</code> corresponding to an
73 * image capture capabilities resource.
74 * @param[out] A NULL-terminated array of pointer to <code>PP_Size</code>
75 * corresponding to the supported JPEG image sizes in pixels. The ownership
76 * of the array belongs to <code>PPB_CameraCapabilities_Private</code> and
77 * the caller should not free it. When a PPB_CameraCapabilities_Private is
78 * deleted, the array returning from this is no longer valid.
79 */
80 void (*GetSupportedJpegSizes)(PP_Resource capabilities,
81 struct PP_Size* jpeg_sizes[]);
82 };
83
84 typedef struct PPB_CameraCapabilities_Private_0_1
85 PPB_CameraCapabilities_Private;
86 /**
87 * @}
88 */
89
90 #endif /* PPAPI_C_PRIVATE_PPB_CAMERA_CAPABILITIES_PRIVATE_H_ */
91
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698