summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/private/uma_private.h
blob: 23de4008e46fc9c18d1a1afe1d5d90f93814cb3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef PPAPI_CPP_PRIVATE_UMA_PRIVATE_H_
#define PPAPI_CPP_PRIVATE_UMA_PRIVATE_H_

#include <string>

#include "ppapi/c/pp_instance.h"
#include "ppapi/cpp/instance_handle.h"

namespace pp {

class UMAPrivate {
 public:
  UMAPrivate();
  explicit UMAPrivate(const InstanceHandle& instance);
  ~UMAPrivate();

  static bool IsAvailable();

  void HistogramCustomTimes(const std::string& name,
                            int64_t sample,
                            int64_t min,
                            int64_t max,
                            uint32_t bucket_count);

  void HistogramCustomCounts(const std::string& name,
                             int32_t sample,
                             int32_t min,
                             int32_t max,
                             uint32_t bucket_count);

  void HistogramEnumeration(const std::string& name,
                            int32_t sample,
                            int32_t boundary_value);

 private:
  PP_Instance instance_;
};

}  // namespace pp

#endif  // PPAPI_CPP_PRIVATE_UMA_PRIVATE_H_