blob: 614b626d837f8790e95649a2e4132383df723613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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 base::UserMetricsAction;
using content::RecordAction;
using content::RecordComputedAction;
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
|