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 flash file. | |
raymes1
2013/04/16 23:31:54
maybe "swf" instead of "file"?
Cris Neckar
2013/04/17 19:20:31
Done.
| |
110 */ | |
111 PP_FLASHCRASHKEY_RESOURCE_URL = 2 | |
107 }; | 112 }; |
108 | 113 |
109 /** | 114 /** |
110 * The <code>PPB_Flash</code> interface contains pointers to various functions | 115 * The <code>PPB_Flash</code> interface contains pointers to various functions |
111 * that are only needed to support Pepper Flash. | 116 * that are only needed to support Pepper Flash. |
112 */ | 117 */ |
113 interface PPB_Flash { | 118 interface PPB_Flash { |
114 /** | 119 /** |
115 * Sets or clears the rendering hint that the given plugin instance is always | 120 * Sets or clears the rendering hint that the given plugin instance is always |
116 * on top of page content. Somewhat more optimized painting can be used in | 121 * 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... | |
260 * | 265 * |
261 * NOTE: This method is a synchronous version of |EnumerateDevices| in | 266 * NOTE: This method is a synchronous version of |EnumerateDevices| in |
262 * PPB_VideoCapture_Dev. | 267 * PPB_VideoCapture_Dev. |
263 */ | 268 */ |
264 [version=12.6] | 269 [version=12.6] |
265 int32_t EnumerateVideoCaptureDevices( | 270 int32_t EnumerateVideoCaptureDevices( |
266 [in] PP_Instance instance, | 271 [in] PP_Instance instance, |
267 [in] PP_Resource video_capture, | 272 [in] PP_Resource video_capture, |
268 [in] PP_ArrayOutput devices); | 273 [in] PP_ArrayOutput devices); |
269 }; | 274 }; |
OLD | NEW |