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

Unified Diff: net/cert/cert_database.h

Issue 1152983004: Move ObserverList to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/network_change_notifier.cc ('k') | net/cert/nss_cert_database.h » ('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 3653e81b1fb38120c29b7692db4ec816122fbfdf..fb28c897772b3a28f1d1d658d1c4d5bf71c25672 100644
--- a/net/cert/cert_database.h
+++ b/net/cert/cert_database.h
@@ -12,7 +12,10 @@
#include "net/cert/x509_certificate.h"
template <typename T> struct DefaultSingletonTraits;
+
+namespace base {
template <class ObserverType> class ObserverListThreadSafe;
+}
namespace net {
@@ -106,7 +109,7 @@ class NET_EXPORT CertDatabase {
CertDatabase();
~CertDatabase();
- const scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_;
+ const scoped_refptr<base::ObserverListThreadSafe<Observer>> observer_list_;
#if defined(OS_MACOSX) && !defined(OS_IOS)
class Notifier;
« no previous file with comments | « net/base/network_change_notifier.cc ('k') | net/cert/nss_cert_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698