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.cc

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.cc
diff --git a/ppapi/cpp/private/uma_private.cc b/ppapi/cpp/private/uma_private.cc
new file mode 100644
index 0000000000000000000000000000000000000000..9e93437ee32875808bcfb721cc12604428a729fd
--- /dev/null
+++ b/ppapi/cpp/private/uma_private.cc
@@ -0,0 +1,69 @@
+// 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.
+
+#include "ppapi/cpp/private/uma_private.h"
+
+#include "ppapi/c/pp_errors.h"
+#include "ppapi/c/private/ppb_uma_private.h"
+#include "ppapi/cpp/module_impl.h"
+#include "ppapi/cpp/var.h"
+
+namespace pp {
+
+namespace {
+
+template <> const char* interface_name<PPB_UMA_Private_0_2>() {
+ return PPB_UMA_PRIVATE_INTERFACE_0_2;
+}
+
+} // namespace
+
+UMAPrivate::UMAPrivate() {
+}
+
+UMAPrivate::UMAPrivate(
+ const InstanceHandle& instance) : instance_(instance.pp_instance()) {
+}
+
+UMAPrivate::~UMAPrivate() {
+}
+
+int32_t UMAPrivate::HistogramCustomTimes(const std::string& name,
+ int64_t sample,
+ int64_t min,
+ int64_t max,
+ uint32_t bucket_count) const {
+ if (!has_interface<PPB_UMA_Private_0_2>())
+ return PP_ERROR_NOINTERFACE;
+ get_interface<PPB_UMA_Private_0_2>()->
+ HistogramCustomTimes(instance_, pp::Var(name).pp_var(),
+ sample, min, max, bucket_count);
+ return PP_OK;
+}
+
+int32_t UMAPrivate::HistogramCustomCounts(const std::string& name,
+ int32_t sample,
+ int32_t min,
+ int32_t max,
+ uint32_t bucket_count) const {
+ if (!has_interface<PPB_UMA_Private_0_2>())
+ return PP_ERROR_NOINTERFACE;
+ get_interface<PPB_UMA_Private_0_2>()->
+ HistogramCustomCounts(instance_, pp::Var(name).pp_var(),
+ sample, min, max, bucket_count);
+ return PP_OK;
+}
+
+int32_t UMAPrivate::HistogramEnumeration(const std::string& name,
+ int32_t sample,
+ int32_t boundary_value) const {
+ if (!has_interface<PPB_UMA_Private_0_2>())
+ return PP_ERROR_NOINTERFACE;
+ get_interface<PPB_UMA_Private_0_2>()->
+ HistogramEnumeration(instance_, pp::Var(name).pp_var(),
+ sample, boundary_value);
+ return PP_OK;
+}
+
+} // namespace pp

Powered by Google App Engine
This is Rietveld 408576698