OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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 int32_t HistogramCustomTimes(const std::string& name, |
| 22 int64_t sample, |
| 23 int64_t min, |
| 24 int64_t max, |
| 25 uint32_t bucket_count) const; |
| 26 |
| 27 int32_t HistogramCustomCounts(const std::string& name, |
| 28 int32_t sample, |
| 29 int32_t min, |
| 30 int32_t max, |
| 31 uint32_t bucket_count) const; |
| 32 |
| 33 int32_t HistogramEnumeration(const std::string& name, |
| 34 int32_t sample, |
| 35 int32_t boundary_value) const; |
| 36 |
| 37 private: |
| 38 PP_Instance instance_; |
| 39 }; |
| 40 |
| 41 } // namespace pp |
| 42 |
| 43 #endif // PPAPI_CPP_PRIVATE_UMA_PRIVATE_H_ |
OLD | NEW |