diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-01 19:21:20 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-01 19:21:20 +0000 |
commit | 89ed051097ae56406972123366870ab0947ed300 (patch) | |
tree | 0888a644f1d7098f94019b0f266d4819ac0d03da /base/crypto | |
parent | b19c5df733bacb2d3bad2e005b20105f1b84dcb6 (diff) | |
download | chromium_src-89ed051097ae56406972123366870ab0947ed300.zip chromium_src-89ed051097ae56406972123366870ab0947ed300.tar.gz chromium_src-89ed051097ae56406972123366870ab0947ed300.tar.bz2 |
Remove the unnecessary workaround for NSS bug 455424, now that we require
NSS 3.12.3 or later.
R=ukai
BUG=none
TEST=No compilation errors.
Review URL: http://codereview.chromium.org/452014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33464 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/crypto')
-rw-r--r-- | base/crypto/rsa_private_key_nss.cc | 4 | ||||
-rw-r--r-- | base/crypto/signature_creator_nss.cc | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/base/crypto/rsa_private_key_nss.cc b/base/crypto/rsa_private_key_nss.cc index e48a195..7e10b36 100644 --- a/base/crypto/rsa_private_key_nss.cc +++ b/base/crypto/rsa_private_key_nss.cc @@ -4,13 +4,9 @@ #include "base/crypto/rsa_private_key.h" -// Work around https://bugzilla.mozilla.org/show_bug.cgi?id=455424 -// until NSS 3.12.2 comes out and we update to it. -#define Lock FOO_NSS_Lock #include <cryptohi.h> #include <keyhi.h> #include <pk11pub.h> -#undef Lock #include <iostream> #include <list> diff --git a/base/crypto/signature_creator_nss.cc b/base/crypto/signature_creator_nss.cc index 3ca4ff7..e0de4b7 100644 --- a/base/crypto/signature_creator_nss.cc +++ b/base/crypto/signature_creator_nss.cc @@ -4,13 +4,9 @@ #include "base/crypto/signature_creator.h" -// Work around https://bugzilla.mozilla.org/show_bug.cgi?id=455424 -// until NSS 3.12.2 comes out and we update to it. -#define Lock FOO_NSS_Lock #include <cryptohi.h> #include <keyhi.h> #include <stdlib.h> -#undef Lock #include "base/logging.h" #include "base/nss_init.h" |