blob: bae4bb1b20b73241416a566dd35da59fa6d9737f [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef DEVICE_GEOLOCATION_LOCATION_PROVIDER_ANDROID_H_
#define DEVICE_GEOLOCATION_LOCATION_PROVIDER_ANDROID_H_
#include "base/compiler_specific.h"
#include "device/geolocation/geoposition.h"
#include "device/geolocation/location_provider_base.h"
namespace device {
class AndroidLocationApiAdapter;
struct Geoposition;
// Location provider for Android using the platform provider over JNI.
class LocationProviderAndroid : public LocationProviderBase {
public:
LocationProviderAndroid();
~LocationProviderAndroid() override;
// Called by the AndroidLocationApiAdapter.
void NotifyNewGeoposition(const Geoposition& position);
// LocationProvider.
bool StartProvider(bool high_accuracy) override;
void StopProvider() override;
void GetPosition(Geoposition* position) override;
void RequestRefresh() override;
void OnPermissionGranted() override;
private:
Geoposition last_position_;
};
} // namespace device
#endif // DEVICE_GEOLOCATION_LOCATION_PROVIDER_ANDROID_H_