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

Unified Diff: content/browser/signed_certificate_timestamp_store_impl.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
Index: content/browser/signed_certificate_timestamp_store_impl.h
diff --git a/content/browser/signed_certificate_timestamp_store_impl.h b/content/browser/signed_certificate_timestamp_store_impl.h
index 8eba0350022e6dccd3eede48addb58cb4c6a54ee..3b669707a2cccbd230bd197cbc83ca23382fb7a0 100644
--- a/content/browser/signed_certificate_timestamp_store_impl.h
+++ b/content/browser/signed_certificate_timestamp_store_impl.h
@@ -9,7 +9,9 @@
#include "content/public/browser/signed_certificate_timestamp_store.h"
#include "net/cert/signed_certificate_timestamp.h"
+namespace base {
template <typename T> struct DefaultSingletonTraits;
+}
namespace content {
@@ -27,7 +29,8 @@ class SignedCertificateTimestampStoreImpl
scoped_refptr<net::ct::SignedCertificateTimestamp>* sct) override;
private:
- friend struct DefaultSingletonTraits<SignedCertificateTimestampStoreImpl>;
+ friend struct base::DefaultSingletonTraits<
+ SignedCertificateTimestampStoreImpl>;
SignedCertificateTimestampStoreImpl();
~SignedCertificateTimestampStoreImpl() override;

Powered by Google App Engine
This is Rietveld 408576698