| Index: net/android/x509_util.cc
|
| diff --git a/net/android/x509_util.cc b/net/android/x509_util.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b9be7de916fb916bc15f08abc7ae50c729ec51c5
|
| --- /dev/null
|
| +++ b/net/android/x509_util.cc
|
| @@ -0,0 +1,20 @@
|
| +// 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 "net/android/x509_util.h"
|
| +
|
| +#include "jni/X509Util_jni.h"
|
| +#include "net/cert/cert_database.h"
|
| +
|
| +namespace net {
|
| +
|
| +void NotifyCertDatabaseUpdated(JNIEnv* env, jclass clazz) {
|
| + CertDatabase::GetInstance()->OnAndroidKeyChainChanged();
|
| +}
|
| +
|
| +bool RegisterX509Util(JNIEnv* env) {
|
| + return RegisterNativesImpl(env);
|
| +}
|
| +
|
| +} // net namespace
|
|
|