x509_util_android.cc 443 B

12345678910111213141516
  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. #include "net/cert/cert_database.h"
  5. #include "net/net_jni_headers/X509Util_jni.h"
  6. using base::android::JavaParamRef;
  7. namespace net {
  8. void JNI_X509Util_NotifyKeyChainChanged(JNIEnv* env) {
  9. CertDatabase::GetInstance()->NotifyObserversCertDBChanged();
  10. }
  11. } // namespace net