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

Unified Diff: content/browser/geolocation/wifi_data_provider_mac.h

Issue 476133003: Rename platform specific wifi data provider classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reanem unittest file for consistency. Created 6 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
« no previous file with comments | « no previous file | content/browser/geolocation/wifi_data_provider_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/geolocation/wifi_data_provider_mac.h
diff --git a/content/browser/geolocation/wifi_data_provider_mac.h b/content/browser/geolocation/wifi_data_provider_mac.h
index ebb0030df2f2875c43767a37f7d6db91e272df4c..e99164899e7ea7bfacb0d8cc30d7beae273af804 100644
--- a/content/browser/geolocation/wifi_data_provider_mac.h
+++ b/content/browser/geolocation/wifi_data_provider_mac.h
@@ -12,18 +12,18 @@ namespace content {
// Implementation of the wifi data provider for Mac OSX. Uses different API
// bindings depending on APIs detected available at runtime in order to access
// wifi scan data: Apple80211.h on OSX 10.5, CoreWLAN framework on OSX 10.6.
-class MacWifiDataProvider : public WifiDataProviderCommon {
+class WifiDataProviderMac : public WifiDataProviderCommon {
public:
- MacWifiDataProvider();
+ WifiDataProviderMac();
private:
- virtual ~MacWifiDataProvider();
+ virtual ~WifiDataProviderMac();
// WifiDataProviderCommon
virtual WlanApiInterface* NewWlanApi() OVERRIDE;
virtual WifiPollingPolicy* NewPollingPolicy() OVERRIDE;
- DISALLOW_COPY_AND_ASSIGN(MacWifiDataProvider);
+ DISALLOW_COPY_AND_ASSIGN(WifiDataProviderMac);
};
// Creates and returns a new API binding for the CoreWLAN API, or NULL if the
« no previous file with comments | « no previous file | content/browser/geolocation/wifi_data_provider_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698