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

Side by Side Diff: ppapi/c/dev/ppb_console_dev.h

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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/c/dev/ppb_char_set_dev.h ('k') | ppapi/c/dev/ppb_crypto_dev.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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 dev/ppb_console_dev.idl modified Fri Nov 11 20:17:52 2011. */ 6 /* From dev/ppb_console_dev.idl modified Mon Nov 14 10:36:01 2011. */
7 7
8 #ifndef PPAPI_C_DEV_PPB_CONSOLE_DEV_H_ 8 #ifndef PPAPI_C_DEV_PPB_CONSOLE_DEV_H_
9 #define PPAPI_C_DEV_PPB_CONSOLE_DEV_H_ 9 #define PPAPI_C_DEV_PPB_CONSOLE_DEV_H_
10 10
11 #include "ppapi/c/pp_bool.h" 11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_instance.h" 12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_macros.h" 13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_stdint.h" 14 #include "ppapi/c/pp_stdint.h"
15 #include "ppapi/c/pp_var.h" 15 #include "ppapi/c/pp_var.h"
16 16
(...skipping 18 matching lines...) Expand all
35 } PP_LogLevel_Dev; 35 } PP_LogLevel_Dev;
36 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_LogLevel_Dev, 4); 36 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_LogLevel_Dev, 4);
37 /** 37 /**
38 * @} 38 * @}
39 */ 39 */
40 40
41 /** 41 /**
42 * @addtogroup Interfaces 42 * @addtogroup Interfaces
43 * @{ 43 * @{
44 */ 44 */
45 struct PPB_Console_Dev { 45 struct PPB_Console_Dev_0_1 {
46 /** 46 /**
47 * Logs the given message to the JavaScript console associated with the 47 * Logs the given message to the JavaScript console associated with the
48 * given plugin instance with the given logging level. The name of the plugin 48 * given plugin instance with the given logging level. The name of the plugin
49 * issuing the log message will be automatically prepended to the message. 49 * issuing the log message will be automatically prepended to the message.
50 * The value may be any type of Var. 50 * The value may be any type of Var.
51 */ 51 */
52 void (*Log)(PP_Instance instance, PP_LogLevel_Dev level, struct PP_Var value); 52 void (*Log)(PP_Instance instance, PP_LogLevel_Dev level, struct PP_Var value);
53 /** 53 /**
54 * Logs a message to the console with the given source information rather 54 * Logs a message to the console with the given source information rather
55 * than using the internal PPAPI plugin name. The name must be a string var. 55 * than using the internal PPAPI plugin name. The name must be a string var.
56 * 56 *
57 * The regular log function will automatically prepend the name of your 57 * The regular log function will automatically prepend the name of your
58 * plugin to the message as the "source" of the message. Some plugins may 58 * plugin to the message as the "source" of the message. Some plugins may
59 * wish to override this. For example, if your plugin is a Python 59 * wish to override this. For example, if your plugin is a Python
60 * interpreter, you would want log messages to contain the source .py file 60 * interpreter, you would want log messages to contain the source .py file
61 * doing the log statement rather than have "python" show up in the console. 61 * doing the log statement rather than have "python" show up in the console.
62 */ 62 */
63 void (*LogWithSource)(PP_Instance instance, 63 void (*LogWithSource)(PP_Instance instance,
64 PP_LogLevel_Dev level, 64 PP_LogLevel_Dev level,
65 struct PP_Var source, 65 struct PP_Var source,
66 struct PP_Var value); 66 struct PP_Var value);
67 }; 67 };
68
69 typedef struct PPB_Console_Dev_0_1 PPB_Console_Dev;
68 /** 70 /**
69 * @} 71 * @}
70 */ 72 */
71 73
72 #endif /* PPAPI_C_DEV_PPB_CONSOLE_DEV_H_ */ 74 #endif /* PPAPI_C_DEV_PPB_CONSOLE_DEV_H_ */
73 75
OLDNEW
« no previous file with comments | « ppapi/c/dev/ppb_char_set_dev.h ('k') | ppapi/c/dev/ppb_crypto_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698