| Index: content/browser/geolocation/network_location_provider.h
|
| diff --git a/content/browser/geolocation/network_location_provider.h b/content/browser/geolocation/network_location_provider.h
|
| index 710fd3f4fa6d909fc303bccff6a721602490f948..daf0c8b4417e5175ef16e4d430f74334f4e5e6eb 100644
|
| --- a/content/browser/geolocation/network_location_provider.h
|
| +++ b/content/browser/geolocation/network_location_provider.h
|
| @@ -82,18 +82,18 @@ class NetworkLocationProvider
|
| // Satisfies a position request from cache or network.
|
| void RequestPosition();
|
|
|
| - // Called from a callback when new wifi data is available.
|
| - void WifiDataUpdateAvailable(WifiDataProvider* provider);
|
| + // Gets called when new wifi data is available.
|
| + void OnWifiDataUpdate(WifiDataProvider* provider);
|
|
|
| - // Internal helper used by WifiDataUpdateAvailable.
|
| + // Internal helper used by OnWifiDataUpdate.
|
| void OnWifiDataUpdated();
|
|
|
| bool IsStarted() const;
|
|
|
| - void LocationResponseAvailable(const Geoposition& position,
|
| - bool server_error,
|
| - const base::string16& access_token,
|
| - const WifiData& wifi_data);
|
| + void OnLocationResponse(const Geoposition& position,
|
| + bool server_error,
|
| + const base::string16& access_token,
|
| + const WifiData& wifi_data);
|
|
|
| scoped_refptr<AccessTokenStore> access_token_store_;
|
|
|
|
|