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

Unified Diff: net/cert/cert_database.h

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 | « net/base/openssl_private_key_store_memory.cc ('k') | net/cert/cert_database.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/cert_database.h
diff --git a/net/cert/cert_database.h b/net/cert/cert_database.h
index 64f5069f489c5a3f4c3cef222647e3ceb3a7ab7f..8b9b82e0d648f14e056b6710ec4c987a4feb5de4 100644
--- a/net/cert/cert_database.h
+++ b/net/cert/cert_database.h
@@ -11,9 +11,9 @@
#include "net/base/net_export.h"
#include "net/cert/x509_certificate.h"
+namespace base {
template <typename T> struct DefaultSingletonTraits;
-namespace base {
template <class ObserverType>
class ObserverListThreadSafe;
}
@@ -105,7 +105,7 @@ class NET_EXPORT CertDatabase {
void NotifyObserversOfCACertChanged(const X509Certificate* cert);
private:
- friend struct DefaultSingletonTraits<CertDatabase>;
+ friend struct base::DefaultSingletonTraits<CertDatabase>;
CertDatabase();
~CertDatabase();
« no previous file with comments | « net/base/openssl_private_key_store_memory.cc ('k') | net/cert/cert_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698