diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-03 00:48:17 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-03 00:48:17 +0000 |
commit | 3c6cf57f58e7f02c0e93250a59d23fe91d9d5397 (patch) | |
tree | 3473fad330fcb053f513bfac7b3261d2d3b66dbd /crypto/p224_unittest.cc | |
parent | feee2078adf61cfcdfb987b791260e5c55e62e67 (diff) | |
download | chromium_src-3c6cf57f58e7f02c0e93250a59d23fe91d9d5397.zip chromium_src-3c6cf57f58e7f02c0e93250a59d23fe91d9d5397.tar.gz chromium_src-3c6cf57f58e7f02c0e93250a59d23fe91d9d5397.tar.bz2 |
crypto: Remove forbidden using namespace directive.
Instead just wrap the unittests files into the crypto namespace.
TEST=crypto_unittests
R=rsleevi@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11368035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165816 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto/p224_unittest.cc')
-rw-r--r-- | crypto/p224_unittest.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/p224_unittest.cc b/crypto/p224_unittest.cc index c6acfdd..ef9e305 100644 --- a/crypto/p224_unittest.cc +++ b/crypto/p224_unittest.cc @@ -9,7 +9,8 @@ #include "testing/gtest/include/gtest/gtest.h" -using namespace crypto; +namespace crypto { + using p224::Point; // kBasePointExternal is the P224 base point in external representation. @@ -819,3 +820,5 @@ TEST(P224, Infinity) { // We shouldn't allow ∞ to be imported. EXPECT_FALSE(a.SetFromString(std::string(zeros, sizeof(zeros)))); } + +} // namespace crypto |