Index: chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.java |
diff --git a/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.java b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.java |
index c99e84e968cfb1f55c90d9de0ac29d7b0c9f4f03..05f075651af3d53e38df02673f1c5360a5fa47fe 100644 |
--- a/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.java |
+++ b/chrome/android/shell/java/src/org/chromium/chrome/shell/ChromeShellApplication.java |
@@ -10,11 +10,12 @@ import org.chromium.base.CommandLine; |
import org.chromium.base.PathUtils; |
import org.chromium.base.ResourceExtractor; |
import org.chromium.chrome.browser.ChromiumApplication; |
-import org.chromium.chrome.browser.PKCS11AuthenticationManager; |
import org.chromium.chrome.browser.identity.UniqueIdentificationGeneratorFactory; |
import org.chromium.chrome.browser.identity.UuidBasedUniqueIdentificationGenerator; |
import org.chromium.chrome.browser.invalidation.UniqueIdInvalidationClientNameGenerator; |
import org.chromium.chrome.browser.metrics.UmaUtils; |
+import org.chromium.chrome.browser.smartcard.EmptyPKCS11AuthenticationManager; |
+import org.chromium.chrome.browser.smartcard.PKCS11AuthenticationManager; |
import org.chromium.chrome.browser.sync.SyncController; |
import org.chromium.chrome.shell.preferences.ChromeShellPreferences; |
@@ -115,6 +116,6 @@ public class ChromeShellApplication extends ChromiumApplication { |
@Override |
protected PKCS11AuthenticationManager getPKCS11AuthenticationManager() { |
- return new ChromeShellPKCS11AuthenticationManager(); |
+ return EmptyPKCS11AuthenticationManager.getInstance(); |
} |
} |