Pepper_56_C_interfaces
Pepper_56_C_interfaces
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
ppb_console.h
Go to the documentation of this file.
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
3  * found in the LICENSE file.
4  */
5 
6 /* From ppb_console.idl modified Thu Oct 20 13:57:04 2016. */
7 
8 #ifndef PPAPI_C_PPB_CONSOLE_H_
9 #define PPAPI_C_PPB_CONSOLE_H_
10 
11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_stdint.h"
15 #include "ppapi/c/pp_var.h"
16 
17 #define PPB_CONSOLE_INTERFACE_1_0 "PPB_Console;1.0"
18 #define PPB_CONSOLE_INTERFACE PPB_CONSOLE_INTERFACE_1_0
19 
30 typedef enum {
31  PP_LOGLEVEL_TIP = 0,
32  PP_LOGLEVEL_LOG = 1,
33  PP_LOGLEVEL_WARNING = 2,
34  PP_LOGLEVEL_ERROR = 3
35 } PP_LogLevel;
36 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_LogLevel, 4);
52  void (*Log)(PP_Instance instance, PP_LogLevel level, struct PP_Var value);
63  void (*LogWithSource)(PP_Instance instance,
64  PP_LogLevel level,
65  struct PP_Var source,
66  struct PP_Var value);
67 };
68 
69 typedef struct PPB_Console_1_0 PPB_Console;
74 #endif /* PPAPI_C_PPB_CONSOLE_H_ */
75 
Definition: ppb_console.h:45
void(* LogWithSource)(PP_Instance instance, PP_LogLevel level, struct PP_Var source, struct PP_Var value)
Definition: ppb_console.h:63
union PP_VarValue value
Definition: pp_var.h:180
void(* Log)(PP_Instance instance, PP_LogLevel level, struct PP_Var value)
Definition: ppb_console.h:52
Definition: pp_var.h:166
int32_t PP_Instance
Definition: pp_instance.h:34