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

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

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/geofencing/geofencing_service.cc
diff --git a/content/browser/geofencing/geofencing_service.cc b/content/browser/geofencing/geofencing_service.cc
index c9ea83d893fe361aec3837351057ca0a46493d67..d3dc2594fb6327ad2ec441ec5206b5155674fe32 100644
--- a/content/browser/geofencing/geofencing_service.cc
+++ b/content/browser/geofencing/geofencing_service.cc
@@ -72,7 +72,7 @@ GeofencingServiceImpl::~GeofencingServiceImpl() {
GeofencingServiceImpl* GeofencingServiceImpl::GetInstance() {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
- return Singleton<GeofencingServiceImpl>::get();
+ return base::Singleton<GeofencingServiceImpl>::get();
}
bool GeofencingServiceImpl::IsServiceAvailable() {
« no previous file with comments | « content/browser/geofencing/geofencing_service.h ('k') | content/browser/geolocation/geolocation_provider_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698