Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1545)

Side by Side Diff: ppapi/api/private/ppb_flash.idl

Issue 14311004: Add interface to set the sub resource crash key from Flash (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ppapi/c/private/ppb_flash.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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 };
OLDNEW
« no previous file with comments | « no previous file | ppapi/c/private/ppb_flash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698