| 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 Mar 28 10:30:53 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 |
| (...skipping 100 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 document URL which contains the flash instance. |
| 124 */ |
| 125 PP_FLASHCRASHKEY_RESOURCE_URL = 2 |
| 122 } PP_FlashCrashKey; | 126 } PP_FlashCrashKey; |
| 123 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FlashCrashKey, 4); | 127 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FlashCrashKey, 4); |
| 124 /** | 128 /** |
| 125 * @} | 129 * @} |
| 126 */ | 130 */ |
| 127 | 131 |
| 128 /** | 132 /** |
| 129 * @addtogroup Interfaces | 133 * @addtogroup Interfaces |
| 130 * @{ | 134 * @{ |
| 131 */ | 135 */ |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 int32_t (*EnumerateVideoCaptureDevices)(PP_Instance instance, | 337 int32_t (*EnumerateVideoCaptureDevices)(PP_Instance instance, |
| 334 PP_Resource video_capture, | 338 PP_Resource video_capture, |
| 335 struct PP_ArrayOutput devices); | 339 struct PP_ArrayOutput devices); |
| 336 }; | 340 }; |
| 337 /** | 341 /** |
| 338 * @} | 342 * @} |
| 339 */ | 343 */ |
| 340 | 344 |
| 341 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_H_ */ | 345 #endif /* PPAPI_C_PRIVATE_PPB_FLASH_H_ */ |
| 342 | 346 |
| OLD | NEW |