From a9c2f4719296377d96b0642f84879896387bcc27 Mon Sep 17 00:00:00 2001 From: "yfriedman@chromium.org" Date: Tue, 25 Feb 2014 17:57:05 +0000 Subject: Partial revert of "Add function to support clearing SSL/certificate store." https://codereview.chromium.org/161653002/ added the relevant hook but exposed it in the Java layer without enforcing the call is made on the right thread. Remove the Java hook and use the one from https://codereview.chromium.org/168313002/ instead which is at the chrome layer and can enforce correct threading. NOTRY=true Review URL: https://codereview.chromium.org/178703002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@253192 0039d316-1c4b-4281-b951-d872f2087c98 --- net/android/java/src/org/chromium/net/X509Util.java | 8 -------- 1 file changed, 8 deletions(-) (limited to 'net/android') diff --git a/net/android/java/src/org/chromium/net/X509Util.java b/net/android/java/src/org/chromium/net/X509Util.java index cd8a29a..90012a4 100644 --- a/net/android/java/src/org/chromium/net/X509Util.java +++ b/net/android/java/src/org/chromium/net/X509Util.java @@ -291,11 +291,6 @@ public class X509Util { ensureInitialized(); } - public static void notifyClientCertificatesChanged() { - Log.d(TAG, "ClientCertificatesChanged!"); - nativeNotifyClientCertificatesChanged(); - } - /** * Convert a DER encoded certificate to an X509Certificate. */ @@ -443,9 +438,6 @@ public class X509Util { public static void setDisableNativeCodeForTest(boolean disabled) { sDisableNativeCodeForTest = disabled; } - - private static native void nativeNotifyClientCertificatesChanged(); - /** * Notify the native net::CertDatabase instance that the system database has been updated. */ -- cgit v1.1