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

Side by Side Diff: components/cronet/android/histogram_manager.cc

Issue 904033004: [Cronet] Make HistogramManager an abstract class to break dependency on native library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months 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
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/cronet/android/histogram_manager.h"
6
7 #include <string>
8 #include <vector>
9
10 #include "base/android/jni_array.h"
11 #include "base/metrics/statistics_recorder.h"
12 #include "components/metrics/histogram_manager.h"
13
14 #include "jni/HistogramManager_jni.h"
15
16 namespace cronet {
17
18 // Explicitly register static JNI functions.
19 bool HistogramManagerRegisterJni(JNIEnv* env) {
20 return RegisterNativesImpl(env);
21 }
22
23 static void EnsureInitialized(JNIEnv* env, jobject jcaller) {
24 base::StatisticsRecorder::Initialize();
25 }
26
27 static jbyteArray GetHistogramDeltas(JNIEnv* env, jobject jcaller) {
28 std::vector<uint8> data;
29 if (!metrics::HistogramManager::GetInstance()->GetDeltas(&data))
30 return NULL;
31 return base::android::ToJavaByteArray(env, &data[0], data.size()).Release();
32 }
33
34 } // namespace cronet
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698