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

Side by Side Diff: ppapi/c/private/ppb_flash.h

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 | « ppapi/api/private/ppb_flash.idl ('k') | ppapi/proxy/flash_resource.cc » ('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 /* From private/ppb_flash.idl modified Thu Mar 28 10:30:53 2013. */ 6 /* From private/ppb_flash.idl modified Thu Apr 18 15:06:12 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
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
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
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
OLDNEW
« no previous file with comments | « ppapi/api/private/ppb_flash.idl ('k') | ppapi/proxy/flash_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698