Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1078)

Unified Diff: net/base/openssl_private_key_store_memory.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/message_pump/handle_watcher.cc ('k') | net/cert/cert_database.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/openssl_private_key_store_memory.cc
diff --git a/net/base/openssl_private_key_store_memory.cc b/net/base/openssl_private_key_store_memory.cc
index 5f939d43dd4dfac34c8c39779d8340f4853efc55..e258eb5ce67828efc1b5bf055be6eca318a5571b 100644
--- a/net/base/openssl_private_key_store_memory.cc
+++ b/net/base/openssl_private_key_store_memory.cc
@@ -24,7 +24,7 @@ class MemoryKeyPairStore {
MemoryKeyPairStore() {}
static MemoryKeyPairStore* GetInstance() {
- return Singleton<MemoryKeyPairStore>::get();
+ return base::Singleton<MemoryKeyPairStore>::get();
}
~MemoryKeyPairStore() {
« no previous file with comments | « mojo/message_pump/handle_watcher.cc ('k') | net/cert/cert_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698