#include "services/device/geolocation/geolocation_config.h"
#include "base/functional/bind.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
namespace device {
GeolocationConfig::GeolocationConfig() = default;
GeolocationConfig::~GeolocationConfig() = default;
void GeolocationConfig::Create(
mojo::PendingReceiver<mojom::GeolocationConfig> receiver) {
mojo::MakeSelfOwnedReceiver(std::make_unique<GeolocationConfig>(),
std::move(receiver));
}
void GeolocationConfig::IsHighAccuracyLocationBeingCaptured(
IsHighAccuracyLocationBeingCapturedCallback callback) {
std::move(callback).Run(
GeolocationProvider::GetInstance()->HighAccuracyLocationInUse());
}
}