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

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

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 9f429d55957c51db7c07fc217ac7b92c2c754ccb..a9f9dfebb42baf05dfc21ed579aed5f99a2ec2da 100644
--- a/content/browser/geofencing/geofencing_service.cc
+++ b/content/browser/geofencing/geofencing_service.cc
@@ -140,7 +140,7 @@ void GeofencingServiceImpl::UnregisterRegion(
}
void GeofencingServiceImpl::SetProviderForTesting(
- scoped_ptr<GeofencingProvider> provider) {
+ std::unique_ptr<GeofencingProvider> provider) {
DCHECK(!provider_.get());
provider_ = std::move(provider);
}
« no previous file with comments | « content/browser/geofencing/geofencing_service.h ('k') | content/browser/geofencing/geofencing_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698