| 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
|
|
|