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

Unified Diff: net/cert/nss_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/cert/cert_database.h ('k') | remoting/client/plugin/delegating_signal_strategy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/nss_cert_database.h
diff --git a/net/cert/nss_cert_database.h b/net/cert/nss_cert_database.h
index 50eb037a2068aa7e1f33d3302d2bca2e56e5456f..b68a56dc697c90dc70ef7ab4e2c576045d847592 100644
--- a/net/cert/nss_cert_database.h
+++ b/net/cert/nss_cert_database.h
@@ -20,9 +20,10 @@
#include "net/cert/x509_certificate.h"
namespace base {
+template <class ObserverType>
+class ObserverListThreadSafe;
class TaskRunner;
}
-template <class ObserverType> class ObserverListThreadSafe;
namespace net {
@@ -301,7 +302,7 @@ class NET_EXPORT NSSCertDatabase {
// Task runner that should be used in tests if set.
scoped_refptr<base::TaskRunner> slow_task_runner_for_test_;
- const scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_;
+ const scoped_refptr<base::ObserverListThreadSafe<Observer>> observer_list_;
base::WeakPtrFactory<NSSCertDatabase> weak_factory_;
« no previous file with comments | « net/cert/cert_database.h ('k') | remoting/client/plugin/delegating_signal_strategy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698