OLD | NEW |
---|---|
(Empty) | |
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/android/x509_util.h" | |
6 | |
7 #include "jni/X509Util_jni.h" | |
8 #include "net/cert/cert_database.h" | |
9 | |
10 namespace net { | |
11 | |
12 void NotifyCertDatabaseUpdated(JNIEnv* env, jclass clazz) { | |
wtc
2013/10/16 15:37:34
This method isn't declared in net/android/x509_uti
qsr
2013/10/16 16:02:09
It is defined in jni/X509Util_jni.h
The signatur
| |
13 CertDatabase::GetInstance()->NotifyObserversOfDatabaseUpdated(); | |
14 } | |
15 | |
16 bool RegisterX509Util(JNIEnv* env) { | |
17 return RegisterNativesImpl(env); | |
18 } | |
19 | |
20 } // net namespace | |
OLD | NEW |