summaryrefslogtreecommitdiffstats
path: root/crypto/openssl_util.cc
diff options
context:
space:
mode:
authorjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-15 13:09:26 +0000
committerjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-15 13:09:26 +0000
commitdba10cbee723fae0ee13b30366e6b371fc5e13f3 (patch)
tree0400a221144e4bcea35b439beeb287f75d66e660 /crypto/openssl_util.cc
parentc3d00c8bd8e3652890db6e0525fb5c62a912c123 (diff)
downloadchromium_src-dba10cbee723fae0ee13b30366e6b371fc5e13f3.zip
chromium_src-dba10cbee723fae0ee13b30366e6b371fc5e13f3.tar.gz
chromium_src-dba10cbee723fae0ee13b30366e6b371fc5e13f3.tar.bz2
Fix openssl build
In follow up to http://codereview.chromium.org/6805019/ fixes a couple namespace issues. BUG=None TEST=Builds with use_openssl=1 set. Review URL: http://codereview.chromium.org/6865011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81736 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto/openssl_util.cc')
-rw-r--r--crypto/openssl_util.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/openssl_util.cc b/crypto/openssl_util.cc
index feb47ca..bdf24e6 100644
--- a/crypto/openssl_util.cc
+++ b/crypto/openssl_util.cc
@@ -34,8 +34,8 @@ class OpenSSLInitSingleton {
// we can't control the order the AtExit handlers will run in so
// allowing the global environment to leak at least ensures it is
// available for those other singletons to reliably cleanup.
- return base::Singleton<OpenSSLInitSingleton,
- base::LeakySingletonTraits<OpenSSLInitSingleton> >::get();
+ return Singleton<OpenSSLInitSingleton,
+ LeakySingletonTraits<OpenSSLInitSingleton> >::get();
}
private:
friend struct DefaultSingletonTraits<OpenSSLInitSingleton>;
@@ -85,7 +85,7 @@ class OpenSSLInitSingleton {
// error queue and return, otherwise it will continue calling this function
// until all errors have been removed from the queue.
int OpenSSLErrorCallback(const char* str, size_t len, void* context) {
- DVLOG(1) << "\t" << StringPiece(str, len);
+ DVLOG(1) << "\t" << base::StringPiece(str, len);
return 1;
}