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

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: addressing feedback Created 7 years 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) 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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698