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

Unified 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 errant file, fix comment typo Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/cpp/private/uma_private.h
diff --git a/ppapi/cpp/private/uma_private.h b/ppapi/cpp/private/uma_private.h
new file mode 100644
index 0000000000000000000000000000000000000000..fca0db66707928f3f1147ebd8ece1b7b8980367b
--- /dev/null
+++ b/ppapi/cpp/private/uma_private.h
@@ -0,0 +1,43 @@
+// Copyright (c) 2013 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);
+ virtual ~UMAPrivate();
yzshen1 2013/12/04 19:32:51 it doesn't require a virtual constructor, right?
elijahtaylor1 2013/12/21 02:26:21 Done.
+
+ int32_t HistogramCustomTimes(const std::string& name,
yzshen1 2013/12/04 19:32:51 It seems there is no need to return int32_t, now t
elijahtaylor1 2013/12/21 02:26:21 This was mostly to be able to return PP_ERROR_NOIN
yzshen1 2014/01/08 00:26:24 Maybe we can have a static bool IsAvailable() meth
elijahtaylor1 2014/01/08 23:59:41 Done.
+ int64_t sample,
+ int64_t min,
+ int64_t max,
+ uint32_t bucket_count) const;
yzshen1 2013/12/04 19:32:51 It seems a little bit weird to use const for these
bbudge 2013/12/04 21:08:30 These are really static methods. Why not define th
elijahtaylor1 2013/12/21 02:26:21 I can do that, but I'm wondering if you would acce
elijahtaylor1 2013/12/21 02:26:21 They change internal state of chrome, but not of t
yzshen1 2014/01/08 00:26:24 I understand your point. I just think that would b
elijahtaylor1 2014/01/08 23:59:41 Done.
+
+ int32_t HistogramCustomCounts(const std::string& name,
+ int32_t sample,
+ int32_t min,
+ int32_t max,
+ uint32_t bucket_count) const;
+
+ int32_t HistogramEnumeration(const std::string& name,
+ int32_t sample,
+ int32_t boundary_value) const;
+
+ private:
+ PP_Instance instance_;
+};
+
+} // namespace pp
+
+#endif // PPAPI_CPP_PRIVATE_UMA_PRIVATE_H_

Powered by Google App Engine
This is Rietveld 408576698