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

Unified Diff: content/browser/geofencing/geofencing_service.h

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format Created 5 years, 4 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/geofencing/geofencing_service.h
diff --git a/content/browser/geofencing/geofencing_service.h b/content/browser/geofencing/geofencing_service.h
index 894b81696fd7e61b6421facd86fc04d93ce31c87..998dc491727f69b0a8d3e8b3f73e8930dc644d1f 100644
--- a/content/browser/geofencing/geofencing_service.h
+++ b/content/browser/geofencing/geofencing_service.h
@@ -12,8 +12,10 @@
#include "content/common/content_export.h"
#include "content/common/geofencing_types.h"
+namespace base {
template <typename T>
struct DefaultSingletonTraits;
+}
namespace blink {
struct WebCircularGeofencingRegion;
@@ -69,7 +71,7 @@ class CONTENT_EXPORT GeofencingServiceImpl
protected:
friend class GeofencingServiceTest;
- friend struct DefaultSingletonTraits<GeofencingServiceImpl>;
+ friend struct base::DefaultSingletonTraits<GeofencingServiceImpl>;
GeofencingServiceImpl();
~GeofencingServiceImpl() override;

Powered by Google App Engine
This is Rietveld 408576698