diff options
author | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-25 17:57:05 +0000 |
---|---|---|
committer | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-25 17:57:05 +0000 |
commit | a9c2f4719296377d96b0642f84879896387bcc27 (patch) | |
tree | 1e7cb61d5896ff5a94d3b8f648673e8a549b6dbb /net/android | |
parent | 5b466c48dd69226835d4777005f09c96edec5c2b (diff) | |
download | chromium_src-a9c2f4719296377d96b0642f84879896387bcc27.zip chromium_src-a9c2f4719296377d96b0642f84879896387bcc27.tar.gz chromium_src-a9c2f4719296377d96b0642f84879896387bcc27.tar.bz2 |
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
Diffstat (limited to 'net/android')
-rw-r--r-- | net/android/java/src/org/chromium/net/X509Util.java | 8 |
1 files changed, 0 insertions, 8 deletions
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. */ |