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

Unified Diff: content/browser/geolocation/wifi_data_provider_corewlan_mac.mm

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/geolocation/wifi_data_provider_corewlan_mac.mm
diff --git a/content/browser/geolocation/wifi_data_provider_corewlan_mac.mm b/content/browser/geolocation/wifi_data_provider_corewlan_mac.mm
index bbe099f3d2ffc8d0f5ce97ef2ea0ea6e8f2a5c76..89485d55bea2a85fd849f7601f2380e803d041e8 100644
--- a/content/browser/geolocation/wifi_data_provider_corewlan_mac.mm
+++ b/content/browser/geolocation/wifi_data_provider_corewlan_mac.mm
@@ -182,7 +182,7 @@ bool CoreWlanApi::GetAccessPointData(WifiData::AccessPointDataSet* data) {
}
WifiDataProviderCommon::WlanApiInterface* NewCoreWlanApi() {
- scoped_ptr<CoreWlanApi> self(new CoreWlanApi);
+ std::unique_ptr<CoreWlanApi> self(new CoreWlanApi);
if (self->Init())
return self.release();

Powered by Google App Engine
This is Rietveld 408576698