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

Side by Side Diff: ppapi/api/private/ppb_image_capture_config_private.idl

Issue 848863002: PPAPI: implement GetSupportedPreviewSizes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove video_capture_types.* Created 5 years, 10 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
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 /** 6 /**
7 * This file defines the PPB_ImageCaptureConfig_Private interface for 7 * This file defines the PPB_ImageCaptureConfig_Private interface for
8 * establishing an image capture configuration resource within the browser. 8 * establishing an image capture configuration resource within the browser.
9 */ 9 */
10 10
11 [generate_thunk] 11 [generate_thunk]
12 12
13 label Chrome { 13 label Chrome {
14 M39 = 0.1 14 M42 = 0.1
15 }; 15 };
16 16
17 /** 17 /**
18 * The <code>PPB_ImageCaptureConfig_Private</code> interface contains pointers 18 * The <code>PPB_ImageCaptureConfig_Private</code> interface contains pointers
19 * to several functions for establishing image capture configuration within the 19 * to several functions for establishing image capture configuration within the
20 * browser. The new configuration will take effect after <code> 20 * browser. The new configuration will take effect after <code>
21 * PPB_ImageCapture_Private.SetConfig</code> is called. 21 * PPB_ImageCapture_Private.SetConfig</code> is called.
22 */ 22 */
23 [version=0.1] 23 [version=0.1]
24 interface PPB_ImageCaptureConfig_Private { 24 interface PPB_ImageCaptureConfig_Private {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 * 92 *
93 * @param[in] config A <code>PP_Resource</code> corresponding to a 93 * @param[in] config A <code>PP_Resource</code> corresponding to a
94 * <code>PPB_ImageCaptureConfig_Private</code>. 94 * <code>PPB_ImageCaptureConfig_Private</code>.
95 * @param[in] jpeg_size A <code>PP_Size</code> that indicates the requested 95 * @param[in] jpeg_size A <code>PP_Size</code> that indicates the requested
96 * JPEG image size. 96 * JPEG image size.
97 */ 97 */
98 void SetJpegSize( 98 void SetJpegSize(
99 [in] PP_Resource config, 99 [in] PP_Resource config,
100 [in] PP_Size jpeg_size); 100 [in] PP_Size jpeg_size);
101 }; 101 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698