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

Unified Diff: device/geolocation/wifi_data_provider_win.h

Issue 2833273002: Geolocation cleanup: use unique_ptr<>s and rename New{WlanApi/PollingPolicy} to CreateBla() (Closed)
Patch Set: reillyg@s nits Created 3 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
« no previous file with comments | « device/geolocation/wifi_data_provider_mac.mm ('k') | device/geolocation/wifi_data_provider_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/geolocation/wifi_data_provider_win.h
diff --git a/device/geolocation/wifi_data_provider_win.h b/device/geolocation/wifi_data_provider_win.h
index 50e908bfeaaf05d24531bb203ab405e2c3b5c161..e100e155aed021951f30ae412d31e4c3cc4b3686 100644
--- a/device/geolocation/wifi_data_provider_win.h
+++ b/device/geolocation/wifi_data_provider_win.h
@@ -19,9 +19,9 @@ class DEVICE_GEOLOCATION_EXPORT WifiDataProviderWin
private:
~WifiDataProviderWin() override;
- // WifiDataProviderCommon
- WlanApiInterface* NewWlanApi() override;
- WifiPollingPolicy* NewPollingPolicy() override;
+ // WifiDataProviderCommon implementation
+ std::unique_ptr<WlanApiInterface> CreateWlanApi() override;
+ std::unique_ptr<WifiPollingPolicy> CreatePollingPolicy() override;
DISALLOW_COPY_AND_ASSIGN(WifiDataProviderWin);
};
« no previous file with comments | « device/geolocation/wifi_data_provider_mac.mm ('k') | device/geolocation/wifi_data_provider_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698