OLD | NEW |
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 Loading... |
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 }; |
OLD | NEW |