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

Unified Diff: chrome/browser/android/uma_bridge.cc

Issue 79573003: Upstreaming AppMenu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Actually add tvdpi 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
« no previous file with comments | « chrome/browser/android/uma_bridge.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/uma_bridge.cc
diff --git a/chrome/browser/android/uma_bridge.cc b/chrome/browser/android/uma_bridge.cc
new file mode 100644
index 0000000000000000000000000000000000000000..3900c8e9edf2330e2d56a57a1bb69f69265429ed
--- /dev/null
+++ b/chrome/browser/android/uma_bridge.cc
@@ -0,0 +1,48 @@
+// Copyright 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 "chrome/browser/android/uma_bridge.h"
+
+#include <jni.h>
+
+#include "content/public/browser/user_metrics.h"
+#include "jni/UmaBridge_jni.h"
+
+using content::RecordAction;
+using content::RecordComputedAction;
+using content::UserMetricsAction;
+
+static void RecordMenuShow(JNIEnv*, jclass) {
+ RecordAction(UserMetricsAction("MobileMenuShow"));
+}
+
+static void RecordUsingMenu(JNIEnv*,
+ jclass,
+ jboolean is_by_hw_button,
+ jboolean is_dragging) {
+ if (is_by_hw_button) {
+ if (is_dragging) {
+ RecordAction(UserMetricsAction("MobileUsingMenuByHwButtonDragging"));
+ } else {
+ RecordAction(UserMetricsAction("MobileUsingMenuByHwButtonTap"));
+ }
+ } else {
+ if (is_dragging) {
+ RecordAction(UserMetricsAction("MobileUsingMenuBySwButtonDragging"));
+ } else {
+ RecordAction(UserMetricsAction("MobileUsingMenuBySwButtonTap"));
+ }
+ }
+}
+
+namespace chrome {
+namespace android {
+
+// Register native methods
+bool RegisterUmaBridge(JNIEnv* env) {
+ return RegisterNativesImpl(env);
+}
+
+} // namespace android
+} // namespace chrome
« no previous file with comments | « chrome/browser/android/uma_bridge.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698