OLD | NEW |
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 Aug 26 13:53:19 2011. */ | 6 /* From dev/ppb_console_dev.idl modified Fri Nov 11 20:17:52 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 |
17 #define PPB_CONSOLE_DEV_INTERFACE_0_1 "PPB_Console(Dev);0.1" | 17 #define PPB_CONSOLE_DEV_INTERFACE_0_1 "PPB_Console(Dev);0.1" |
18 #define PPB_CONSOLE_DEV_INTERFACE PPB_CONSOLE_DEV_INTERFACE_0_1 | 18 #define PPB_CONSOLE_DEV_INTERFACE PPB_CONSOLE_DEV_INTERFACE_0_1 |
19 | 19 |
20 /** | 20 /** |
21 * @file | 21 * @file |
22 * This file defines the <code>PPB_Console_Dev</code> interface. | 22 * This file defines the <code>PPB_Console_Dev</code> interface. |
23 */ | 23 */ |
24 | 24 |
25 | 25 |
26 /** | 26 /** |
27 * @addtogroup Enums | 27 * @addtogroup Enums |
28 * @{ | 28 * @{ |
29 */ | 29 */ |
30 typedef enum { | 30 typedef enum { |
31 PP_LOGLEVEL_TIP = 0, | 31 PP_LOGLEVEL_TIP = 0, |
32 PP_LOGLEVEL_LOG, | 32 PP_LOGLEVEL_LOG = 1, |
33 PP_LOGLEVEL_WARNING, | 33 PP_LOGLEVEL_WARNING = 2, |
34 PP_LOGLEVEL_ERROR | 34 PP_LOGLEVEL_ERROR = 3 |
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 */ |
(...skipping 19 matching lines...) Expand all Loading... |
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 /** | 68 /** |
69 * @} | 69 * @} |
70 */ | 70 */ |
71 | 71 |
72 #endif /* PPAPI_C_DEV_PPB_CONSOLE_DEV_H_ */ | 72 #endif /* PPAPI_C_DEV_PPB_CONSOLE_DEV_H_ */ |
73 | 73 |
OLD | NEW |