| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 // From private/ppb_uma_private.idl modified Mon Apr 7 08:56:43 2014. | 5 // From private/ppb_uma_private.idl modified Tue Mar 25 14:43:09 2014. |
| 6 | |
| 7 #include <stdint.h> | |
| 8 | 6 |
| 9 #include "ppapi/c/pp_completion_callback.h" | 7 #include "ppapi/c/pp_completion_callback.h" |
| 10 #include "ppapi/c/pp_errors.h" | 8 #include "ppapi/c/pp_errors.h" |
| 11 #include "ppapi/c/private/ppb_uma_private.h" | 9 #include "ppapi/c/private/ppb_uma_private.h" |
| 12 #include "ppapi/shared_impl/tracked_callback.h" | 10 #include "ppapi/shared_impl/tracked_callback.h" |
| 13 #include "ppapi/thunk/enter.h" | 11 #include "ppapi/thunk/enter.h" |
| 14 #include "ppapi/thunk/ppapi_thunk_export.h" | 12 #include "ppapi/thunk/ppapi_thunk_export.h" |
| 15 #include "ppapi/thunk/ppb_uma_singleton_api.h" | 13 #include "ppapi/thunk/ppb_uma_singleton_api.h" |
| 16 | 14 |
| 17 namespace ppapi { | 15 namespace ppapi { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 struct PP_CompletionCallback callback) { | 61 struct PP_CompletionCallback callback) { |
| 64 VLOG(4) << "PPB_UMA_Private::IsCrashReportingEnabled()"; | 62 VLOG(4) << "PPB_UMA_Private::IsCrashReportingEnabled()"; |
| 65 EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance, callback); | 63 EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance, callback); |
| 66 if (enter.failed()) | 64 if (enter.failed()) |
| 67 return enter.retval(); | 65 return enter.retval(); |
| 68 return enter.SetResult( | 66 return enter.SetResult( |
| 69 enter.functions()->IsCrashReportingEnabled(instance, enter.callback())); | 67 enter.functions()->IsCrashReportingEnabled(instance, enter.callback())); |
| 70 } | 68 } |
| 71 | 69 |
| 72 const PPB_UMA_Private_0_3 g_ppb_uma_private_thunk_0_3 = { | 70 const PPB_UMA_Private_0_3 g_ppb_uma_private_thunk_0_3 = { |
| 73 &HistogramCustomTimes, | 71 &HistogramCustomTimes, &HistogramCustomCounts, &HistogramEnumeration, |
| 74 &HistogramCustomCounts, | |
| 75 &HistogramEnumeration, | |
| 76 &IsCrashReportingEnabled}; | 72 &IsCrashReportingEnabled}; |
| 77 | 73 |
| 78 } // namespace | 74 } // namespace |
| 79 | 75 |
| 80 PPAPI_THUNK_EXPORT const PPB_UMA_Private_0_3* GetPPB_UMA_Private_0_3_Thunk() { | 76 PPAPI_THUNK_EXPORT const PPB_UMA_Private_0_3* GetPPB_UMA_Private_0_3_Thunk() { |
| 81 return &g_ppb_uma_private_thunk_0_3; | 77 return &g_ppb_uma_private_thunk_0_3; |
| 82 } | 78 } |
| 83 | 79 |
| 84 } // namespace thunk | 80 } // namespace thunk |
| 85 } // namespace ppapi | 81 } // namespace ppapi |
| OLD | NEW |