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.
5 // From private/ppb_uma_private.idl modified Mon Apr 7 08:56:43 2014.
7 #include "ppapi/c/pp_completion_callback.h"
8 #include "ppapi/c/pp_errors.h"
9 #include "ppapi/c/private/ppb_uma_private.h"
10 #include "ppapi/shared_impl/tracked_callback.h"
11 #include "ppapi/thunk/enter.h"
12 #include "ppapi/thunk/ppapi_thunk_export.h"
13 #include "ppapi/thunk/ppb_uma_singleton_api.h"
20 void HistogramCustomTimes(PP_Instance instance
,
25 uint32_t bucket_count
) {
26 VLOG(4) << "PPB_UMA_Private::HistogramCustomTimes()";
27 EnterInstanceAPI
<PPB_UMA_Singleton_API
> enter(instance
);
30 enter
.functions()->HistogramCustomTimes(instance
, name
, sample
, min
, max
,
34 void HistogramCustomCounts(PP_Instance instance
,
39 uint32_t bucket_count
) {
40 VLOG(4) << "PPB_UMA_Private::HistogramCustomCounts()";
41 EnterInstanceAPI
<PPB_UMA_Singleton_API
> enter(instance
);
44 enter
.functions()->HistogramCustomCounts(instance
, name
, sample
, min
, max
,
48 void HistogramEnumeration(PP_Instance instance
,
51 int32_t boundary_value
) {
52 VLOG(4) << "PPB_UMA_Private::HistogramEnumeration()";
53 EnterInstanceAPI
<PPB_UMA_Singleton_API
> enter(instance
);
56 enter
.functions()->HistogramEnumeration(instance
, name
, sample
,
60 int32_t IsCrashReportingEnabled(PP_Instance instance
,
61 struct PP_CompletionCallback callback
) {
62 VLOG(4) << "PPB_UMA_Private::IsCrashReportingEnabled()";
63 EnterInstanceAPI
<PPB_UMA_Singleton_API
> enter(instance
, callback
);
65 return enter
.retval();
66 return enter
.SetResult(
67 enter
.functions()->IsCrashReportingEnabled(instance
, enter
.callback()));
70 const PPB_UMA_Private_0_3 g_ppb_uma_private_thunk_0_3
= {
71 &HistogramCustomTimes
,
72 &HistogramCustomCounts
,
73 &HistogramEnumeration
,
74 &IsCrashReportingEnabled
};
78 PPAPI_THUNK_EXPORT
const PPB_UMA_Private_0_3
* GetPPB_UMA_Private_0_3_Thunk() {
79 return &g_ppb_uma_private_thunk_0_3
;