summaryrefslogtreecommitdiffstats
path: root/crypto/nss_util.cc
diff options
context:
space:
mode:
authorhashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-16 03:55:27 +0000
committerhashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-16 03:55:27 +0000
commitd204b6b86b30f2341a75f0b072e5b13b306d6651 (patch)
tree07530032dde4f341b5b379c474dcff54f50b25a3 /crypto/nss_util.cc
parent70248bae8ecbb42fd1dbf9b5cb5d2efb391815bf (diff)
downloadchromium_src-d204b6b86b30f2341a75f0b072e5b13b306d6651.zip
chromium_src-d204b6b86b30f2341a75f0b072e5b13b306d6651.tar.gz
chromium_src-d204b6b86b30f2341a75f0b072e5b13b306d6651.tar.bz2
Remove crypto::IsTPMTokenAvailble
BUG=126674 TEST=build success Review URL: https://chromiumcodereview.appspot.com/10381151 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137357 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto/nss_util.cc')
-rw-r--r--crypto/nss_util.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/crypto/nss_util.cc b/crypto/nss_util.cc
index 5b9a387..927f2b8 100644
--- a/crypto/nss_util.cc
+++ b/crypto/nss_util.cc
@@ -270,12 +270,6 @@ class NSSInitSingleton {
callback));
}
- bool IsTPMTokenAvailable() {
- if (tpm_token_info_delegate_.get() == NULL)
- return false;
- return tpm_token_info_delegate_->IsTokenAvailable();
- }
-
void GetTPMTokenInfo(std::string* token_name, std::string* user_pin) {
if (tpm_token_info_delegate_.get() == NULL) {
LOG(ERROR) << "GetTPMTokenInfo called before TPM Token is ready.";
@@ -770,10 +764,6 @@ void GetTPMTokenInfo(std::string* token_name, std::string* user_pin) {
g_nss_singleton.Get().GetTPMTokenInfo(token_name, user_pin);
}
-bool IsTPMTokenAvailable() {
- return g_nss_singleton.Get().IsTPMTokenAvailable();
-}
-
bool IsTPMTokenReady() {
return g_nss_singleton.Get().IsTPMTokenReady();
}