Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / net / cert / x509_util_android.cc
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
3 // found in the LICENSE file.
4
5 #include "net/cert/x509_util_android.h"
6
7 #include "base/android/build_info.h"
8 #include "base/android/jni_android.h"
9 #include "base/metrics/histogram.h"
10 #include "jni/X509Util_jni.h"
11 #include "net/cert/cert_database.h"
12
13 namespace net {
14
15 void NotifyKeyChainChanged(JNIEnv* env, jclass clazz) {
16   CertDatabase::GetInstance()->OnAndroidKeyChainChanged();
17 }
18
19 void NotifyClientCertificatesChanged(JNIEnv* env, jclass clazz) {
20   CertDatabase::GetInstance()->OnAndroidKeyStoreChanged();
21 }
22
23 void RecordCertVerifyCapabilitiesHistogram(JNIEnv* env,
24                                            jclass clazz,
25                                            jboolean found_system_trust_roots) {
26   // Only record the histogram for 4.2 and up. Before 4.2, the platform doesn't
27   // return the certificate chain anyway.
28   if (base::android::BuildInfo::GetInstance()->sdk_int() >= 17) {
29     UMA_HISTOGRAM_BOOLEAN("Net.FoundSystemTrustRootsAndroid",
30                           found_system_trust_roots);
31   }
32 }
33
34 jobject GetApplicationContext(JNIEnv* env, jclass clazz) {
35   return base::android::GetApplicationContext();
36 }
37
38 bool RegisterX509Util(JNIEnv* env) {
39   return RegisterNativesImpl(env);
40 }
41
42 }  // net namespace