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

Side by Side Diff: webrtc/sdk/android/src/jni/androidmetrics_jni.cc

Issue 2547483003: Move /webrtc/api/android files to /webrtc/sdk/android (Closed)
Patch Set: Move to api folder under Android instead of src Created 4 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <map> 11 #include <map>
12 #include <memory> 12 #include <memory>
13 13
14 #include "webrtc/api/android/jni/classreferenceholder.h" 14 #include "webrtc/sdk/android/src/jni/classreferenceholder.h"
15 #include "webrtc/api/android/jni/jni_helpers.h" 15 #include "webrtc/sdk/android/src/jni/jni_helpers.h"
16 #include "webrtc/system_wrappers/include/metrics.h" 16 #include "webrtc/system_wrappers/include/metrics.h"
17 #include "webrtc/system_wrappers/include/metrics_default.h" 17 #include "webrtc/system_wrappers/include/metrics_default.h"
18 18
19 // Enables collection of native histograms and creating them. 19 // Enables collection of native histograms and creating them.
20 namespace webrtc_jni { 20 namespace webrtc_jni {
21 21
22 JOW(void, Metrics_nativeEnable)(JNIEnv* jni, jclass) { 22 JOW(void, Metrics_nativeEnable)(JNIEnv* jni, jclass) {
23 webrtc::metrics::Enable(); 23 webrtc::metrics::Enable();
24 } 24 }
25 25
(...skipping 26 matching lines...) Expand all
52 jstring j_name = jni->NewStringUTF(kv.first.c_str()); 52 jstring j_name = jni->NewStringUTF(kv.first.c_str());
53 jni->CallVoidMethod(j_metrics, j_add, j_name, j_info); 53 jni->CallVoidMethod(j_metrics, j_add, j_name, j_info);
54 jni->DeleteLocalRef(j_name); 54 jni->DeleteLocalRef(j_name);
55 jni->DeleteLocalRef(j_info); 55 jni->DeleteLocalRef(j_info);
56 } 56 }
57 CHECK_EXCEPTION(jni); 57 CHECK_EXCEPTION(jni);
58 return j_metrics; 58 return j_metrics;
59 } 59 }
60 60
61 } // namespace webrtc_jni 61 } // namespace webrtc_jni
OLDNEW
« no previous file with comments | « webrtc/sdk/android/src/jni/androidmediaencoder_jni.cc ('k') | webrtc/sdk/android/src/jni/androidnetworkmonitor_jni.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698