OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 /* From ppb_image_data.idl modified Mon Aug 15 11:01:06 2011. */ | 6 /* From ppb_image_data.idl modified Wed Aug 24 20:50:01 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_PPB_IMAGE_DATA_H_ | 8 #ifndef PPAPI_C_PPB_IMAGE_DATA_H_ |
9 #define PPAPI_C_PPB_IMAGE_DATA_H_ | 9 #define PPAPI_C_PPB_IMAGE_DATA_H_ |
10 | 10 |
11 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
12 #include "ppapi/c/pp_instance.h" | 12 #include "ppapi/c/pp_instance.h" |
13 #include "ppapi/c/pp_macros.h" | 13 #include "ppapi/c/pp_macros.h" |
14 #include "ppapi/c/pp_resource.h" | 14 #include "ppapi/c/pp_resource.h" |
15 #include "ppapi/c/pp_size.h" | 15 #include "ppapi/c/pp_size.h" |
16 #include "ppapi/c/pp_stdint.h" | 16 #include "ppapi/c/pp_stdint.h" |
17 | 17 |
18 #define PPB_IMAGEDATA_INTERFACE_0_3 "PPB_ImageData;0.3" | |
19 #define PPB_IMAGEDATA_INTERFACE_1_0 "PPB_ImageData;1.0" | 18 #define PPB_IMAGEDATA_INTERFACE_1_0 "PPB_ImageData;1.0" |
20 #define PPB_IMAGEDATA_INTERFACE PPB_IMAGEDATA_INTERFACE_1_0 | 19 #define PPB_IMAGEDATA_INTERFACE PPB_IMAGEDATA_INTERFACE_1_0 |
21 | 20 |
22 /** | 21 /** |
23 * @file | 22 * @file |
24 * This file defines the <code>PPB_ImageData</code> struct for determining how | 23 * This file defines the <code>PPB_ImageData</code> struct for determining how |
25 * a browser handles image data. | 24 * a browser handles image data. |
26 */ | 25 */ |
27 | 26 |
28 | 27 |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 * data. | 194 * data. |
196 */ | 195 */ |
197 void (*Unmap)(PP_Resource image_data); | 196 void (*Unmap)(PP_Resource image_data); |
198 }; | 197 }; |
199 /** | 198 /** |
200 * @} | 199 * @} |
201 */ | 200 */ |
202 | 201 |
203 #endif /* PPAPI_C_PPB_IMAGE_DATA_H_ */ | 202 #endif /* PPAPI_C_PPB_IMAGE_DATA_H_ */ |
204 | 203 |
OLD | NEW |