| 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 /** | 6 /** |
| 7 * This file contains the <code>PPB_Flash</code> interface. | 7 * This file contains the <code>PPB_Flash</code> interface. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 label Chrome { | 10 label Chrome { |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 }; | 96 }; |
| 97 | 97 |
| 98 /** | 98 /** |
| 99 * This enum provides keys for setting breakpad crash report data. | 99 * This enum provides keys for setting breakpad crash report data. |
| 100 */ | 100 */ |
| 101 [assert_size(4)] | 101 [assert_size(4)] |
| 102 enum PP_FlashCrashKey { | 102 enum PP_FlashCrashKey { |
| 103 /** | 103 /** |
| 104 * Specifies the document URL which contains the flash instance. | 104 * Specifies the document URL which contains the flash instance. |
| 105 */ | 105 */ |
| 106 PP_FLASHCRASHKEY_URL = 1, | 106 PP_FLASHCRASHKEY_URL = 1 |
| 107 | |
| 108 /** | |
| 109 * Specifies the URL of the current swf. | |
| 110 */ | |
| 111 PP_FLASHCRASHKEY_RESOURCE_URL = 2 | |
| 112 }; | 107 }; |
| 113 | 108 |
| 114 /** | 109 /** |
| 115 * The <code>PPB_Flash</code> interface contains pointers to various functions | 110 * The <code>PPB_Flash</code> interface contains pointers to various functions |
| 116 * that are only needed to support Pepper Flash. | 111 * that are only needed to support Pepper Flash. |
| 117 */ | 112 */ |
| 118 interface PPB_Flash { | 113 interface PPB_Flash { |
| 119 /** | 114 /** |
| 120 * Sets or clears the rendering hint that the given plugin instance is always | 115 * Sets or clears the rendering hint that the given plugin instance is always |
| 121 * on top of page content. Somewhat more optimized painting can be used in | 116 * on top of page content. Somewhat more optimized painting can be used in |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 * | 260 * |
| 266 * NOTE: This method is a synchronous version of |EnumerateDevices| in | 261 * NOTE: This method is a synchronous version of |EnumerateDevices| in |
| 267 * PPB_VideoCapture_Dev. | 262 * PPB_VideoCapture_Dev. |
| 268 */ | 263 */ |
| 269 [version=12.6] | 264 [version=12.6] |
| 270 int32_t EnumerateVideoCaptureDevices( | 265 int32_t EnumerateVideoCaptureDevices( |
| 271 [in] PP_Instance instance, | 266 [in] PP_Instance instance, |
| 272 [in] PP_Resource video_capture, | 267 [in] PP_Resource video_capture, |
| 273 [in] PP_ArrayOutput devices); | 268 [in] PP_ArrayOutput devices); |
| 274 }; | 269 }; |
| OLD | NEW |