OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 private/ppb_flash.idl modified Thu Apr 18 15:06:12 2013. */ | 6 /* From private/ppb_flash.idl modified Thu Mar 28 10:30:53 2013. */ |
7 | 7 |
8 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_H_ | 8 #ifndef PPAPI_C_PRIVATE_PPB_FLASH_H_ |
9 #define PPAPI_C_PRIVATE_PPB_FLASH_H_ | 9 #define PPAPI_C_PRIVATE_PPB_FLASH_H_ |
10 | 10 |
11 #include "ppapi/c/pp_array_output.h" | 11 #include "ppapi/c/pp_array_output.h" |
12 #include "ppapi/c/pp_bool.h" | 12 #include "ppapi/c/pp_bool.h" |
13 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
14 #include "ppapi/c/pp_macros.h" | 14 #include "ppapi/c/pp_macros.h" |
15 #include "ppapi/c/pp_module.h" | 15 #include "ppapi/c/pp_module.h" |
16 #include "ppapi/c/pp_point.h" | 16 #include "ppapi/c/pp_point.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 } PP_FlashSetting; | 111 } PP_FlashSetting; |
112 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FlashSetting, 4); | 112 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FlashSetting, 4); |
113 | 113 |
114 /** | 114 /** |
115 * This enum provides keys for setting breakpad crash report data. | 115 * This enum provides keys for setting breakpad crash report data. |
116 */ | 116 */ |
117 typedef enum { | 117 typedef enum { |
118 /** | 118 /** |
119 * Specifies the document URL which contains the flash instance. | 119 * Specifies the document URL which contains the flash instance. |
120 */ | 120 */ |
121 PP_FLASHCRASHKEY_URL = 1, | 121 PP_FLASHCRASHKEY_URL = 1 |
122 /** | |
123 * Specifies the URL of the current swf. | |
124 */ | |
125 PP_FLASHCRASHKEY_RESOURCE_URL = 2 | |
126 } PP_FlashCrashKey; | 122 } PP_FlashCrashKey; |
127 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FlashCrashKey, 4); | 123 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FlashCrashKey, 4); |
128 /** | 124 /** |
129 * @} | 125 * @} |
130 */ | 126 */ |
131 | 127 |
132 /** | 128 /** |
133 * @addtogroup Interfaces | 129 * @addtogroup Interfaces |
134 * @{ | 130 * @{ |
135 */ | 131 */ |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 int32_t (*EnumerateVideoCaptureDevices)(PP_Instance instance, | 333 int32_t (*EnumerateVideoCaptureDevices)(PP_Instance instance, |
338 PP_Resource video_capture, | 334 PP_Resource video_capture, |
339 struct PP_ArrayOutput devices); | 335 struct PP_ArrayOutput devices); |
340 }; | 336 }; |
341 /** | 337 /** |
342 * @} | 338 * @} |
343 */ | 339 */ |
344 | 340 |
345 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_H_ */ | 341 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_H_ */ |
346 | 342 |
OLD | NEW |