Pepper_56_C_interfaces
Pepper_56_C_interfaces
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
ppb_uma_private.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 private/ppb_uma_private.idl modified Thu Oct 20 13:57:04 2016. */
7 
8 #ifndef PPAPI_C_PRIVATE_PPB_UMA_PRIVATE_H_
9 #define PPAPI_C_PRIVATE_PPB_UMA_PRIVATE_H_
10 
11 #include "ppapi/c/pp_bool.h"
13 #include "ppapi/c/pp_instance.h"
14 #include "ppapi/c/pp_macros.h"
15 #include "ppapi/c/pp_stdint.h"
16 #include "ppapi/c/pp_var.h"
17 
18 #define PPB_UMA_PRIVATE_INTERFACE_0_3 "PPB_UMA_Private;0.3"
19 #define PPB_UMA_PRIVATE_INTERFACE PPB_UMA_PRIVATE_INTERFACE_0_3
20 
41  struct PP_Var name,
42  int64_t sample,
43  int64_t min,
44  int64_t max,
45  uint32_t bucket_count);
52  struct PP_Var name,
53  int32_t sample,
54  int32_t min,
55  int32_t max,
56  uint32_t bucket_count);
64  struct PP_Var name,
65  int32_t sample,
66  int32_t boundary_value);
73  int32_t (*IsCrashReportingEnabled)(PP_Instance instance,
74  struct PP_CompletionCallback callback);
75 };
76 
82 #endif /* PPAPI_C_PRIVATE_PPB_UMA_PRIVATE_H_ */
83 
int32_t(* IsCrashReportingEnabled)(PP_Instance instance, struct PP_CompletionCallback callback)
Definition: ppb_uma_private.h:73
void(* HistogramCustomTimes)(PP_Instance instance, struct PP_Var name, int64_t sample, int64_t min, int64_t max, uint32_t bucket_count)
Definition: ppb_uma_private.h:40
void(* HistogramEnumeration)(PP_Instance instance, struct PP_Var name, int32_t sample, int32_t boundary_value)
Definition: ppb_uma_private.h:63
Definition: pp_var.h:166
int32_t PP_Instance
Definition: pp_instance.h:34
Definition: ppb_uma_private.h:34
Definition: pp_completion_callback.h:139
void(* HistogramCustomCounts)(PP_Instance instance, struct PP_Var name, int32_t sample, int32_t min, int32_t max, uint32_t bucket_count)
Definition: ppb_uma_private.h:51