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

Side by Side Diff: net/android/x509_util.cc

Issue 27500004: Listen for new system certificates. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-upload Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698