| Index: ppapi/proxy/uma_private_resource.h
|
| diff --git a/ppapi/proxy/uma_private_resource.h b/ppapi/proxy/uma_private_resource.h
|
| index 2057ff0e4091e5baa64fe9babe6c5284398e677e..3215e64757721badccc24f3d279238023fc27d3c 100644
|
| --- a/ppapi/proxy/uma_private_resource.h
|
| +++ b/ppapi/proxy/uma_private_resource.h
|
| @@ -19,32 +19,32 @@ class PPAPI_PROXY_EXPORT UMAPrivateResource
|
| public thunk::PPB_UMA_Singleton_API {
|
| public:
|
| UMAPrivateResource(Connection connection, PP_Instance instance);
|
| - virtual ~UMAPrivateResource();
|
| + ~UMAPrivateResource() override;
|
|
|
| // Resource overrides.
|
| - virtual thunk::PPB_UMA_Singleton_API* AsPPB_UMA_Singleton_API() override;
|
| + thunk::PPB_UMA_Singleton_API* AsPPB_UMA_Singleton_API() override;
|
|
|
| // PPB_UMA_Singleton_API implementation.
|
| - virtual void HistogramCustomTimes(PP_Instance instance,
|
| - struct PP_Var name,
|
| - int64_t sample,
|
| - int64_t min,
|
| - int64_t max,
|
| - uint32_t bucket_count) override;
|
| -
|
| - virtual void HistogramCustomCounts(PP_Instance instance,
|
| - struct PP_Var name,
|
| - int32_t sample,
|
| - int32_t min,
|
| - int32_t max,
|
| - uint32_t bucket_count) override;
|
| -
|
| - virtual void HistogramEnumeration(PP_Instance instance,
|
| - struct PP_Var name,
|
| - int32_t sample,
|
| - int32_t boundary_value) override;
|
| -
|
| - virtual int32_t IsCrashReportingEnabled(
|
| + void HistogramCustomTimes(PP_Instance instance,
|
| + struct PP_Var name,
|
| + int64_t sample,
|
| + int64_t min,
|
| + int64_t max,
|
| + uint32_t bucket_count) override;
|
| +
|
| + void HistogramCustomCounts(PP_Instance instance,
|
| + struct PP_Var name,
|
| + int32_t sample,
|
| + int32_t min,
|
| + int32_t max,
|
| + uint32_t bucket_count) override;
|
| +
|
| + void HistogramEnumeration(PP_Instance instance,
|
| + struct PP_Var name,
|
| + int32_t sample,
|
| + int32_t boundary_value) override;
|
| +
|
| + int32_t IsCrashReportingEnabled(
|
| PP_Instance instance,
|
| scoped_refptr<TrackedCallback> callback) override;
|
|
|
|
|