| Index: device/geolocation/location_provider_android.h
|
| diff --git a/device/geolocation/location_provider_android.h b/device/geolocation/location_provider_android.h
|
| index bae4bb1b20b73241416a566dd35da59fa6d9737f..db34904f376a787d8f15cbbd81331cf0e0347f46 100644
|
| --- a/device/geolocation/location_provider_android.h
|
| +++ b/device/geolocation/location_provider_android.h
|
| @@ -26,10 +26,13 @@ class LocationProviderAndroid : public LocationProviderBase {
|
| bool StartProvider(bool high_accuracy) override;
|
| void StopProvider() override;
|
| void GetPosition(Geoposition* position) override;
|
| - void RequestRefresh() override;
|
| void OnPermissionGranted() override;
|
|
|
| private:
|
| + // Provides a hint to the provider that new location data is needed as soon
|
| + // as possible.
|
| + void RequestRefresh();
|
| +
|
| Geoposition last_position_;
|
| };
|
|
|
|
|