OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2014 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 #ifndef PPAPI_CPP_PRIVATE_UMA_PRIVATE_H_ |
| 6 #define PPAPI_CPP_PRIVATE_UMA_PRIVATE_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "ppapi/c/pp_instance.h" |
| 11 #include "ppapi/cpp/instance_handle.h" |
| 12 |
| 13 namespace pp { |
| 14 |
| 15 class UMAPrivate { |
| 16 public: |
| 17 UMAPrivate(); |
| 18 explicit UMAPrivate(const InstanceHandle& instance); |
| 19 ~UMAPrivate(); |
| 20 |
| 21 static bool IsAvailable(); |
| 22 |
| 23 void HistogramCustomTimes(const std::string& name, |
| 24 int64_t sample, |
| 25 int64_t min, |
| 26 int64_t max, |
| 27 uint32_t bucket_count); |
| 28 |
| 29 void HistogramCustomCounts(const std::string& name, |
| 30 int32_t sample, |
| 31 int32_t min, |
| 32 int32_t max, |
| 33 uint32_t bucket_count); |
| 34 |
| 35 void HistogramEnumeration(const std::string& name, |
| 36 int32_t sample, |
| 37 int32_t boundary_value); |
| 38 |
| 39 private: |
| 40 PP_Instance instance_; |
| 41 }; |
| 42 |
| 43 } // namespace pp |
| 44 |
| 45 #endif // PPAPI_CPP_PRIVATE_UMA_PRIVATE_H_ |
OLD | NEW |