OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/android/uma_bridge.h" | 5 #include "chrome/browser/android/metrics/uma_bridge.h" |
6 | 6 |
7 #include <jni.h> | 7 #include <jni.h> |
8 | 8 |
9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
10 #include "content/public/browser/user_metrics.h" | 10 #include "content/public/browser/user_metrics.h" |
11 #include "jni/UmaBridge_jni.h" | 11 #include "jni/UmaBridge_jni.h" |
12 | 12 |
13 using base::UserMetricsAction; | 13 using base::UserMetricsAction; |
14 using content::RecordAction; | 14 using content::RecordAction; |
15 using content::RecordComputedAction; | 15 using content::RecordComputedAction; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 namespace chrome { | 82 namespace chrome { |
83 namespace android { | 83 namespace android { |
84 | 84 |
85 // Register native methods | 85 // Register native methods |
86 bool RegisterUmaBridge(JNIEnv* env) { | 86 bool RegisterUmaBridge(JNIEnv* env) { |
87 return RegisterNativesImpl(env); | 87 return RegisterNativesImpl(env); |
88 } | 88 } |
89 | 89 |
90 } // namespace android | 90 } // namespace android |
91 } // namespace chrome | 91 } // namespace chrome |
OLD | NEW |