Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: ppapi/cpp/private/uma_private.h

Issue 61643022: Proxy private UMA pepper interface for out-of-process and NaCl plugins. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unused histogram names Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698