blob: 50ae7cc837a2ea538b91f1a9bd9ef61b472e646a [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_DEVICE_GEOLOCATION_GEOLOCATION_CONFIG_H_
#define SERVICES_DEVICE_GEOLOCATION_GEOLOCATION_CONFIG_H_
#include "base/compiler_specific.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "services/device/geolocation/geolocation_provider_impl.h"
#include "services/device/public/mojom/geolocation_config.mojom.h"
namespace device {
// Implements the GeolocationConfig Mojo interface.
class GeolocationConfig : public mojom::GeolocationConfig {
public:
GeolocationConfig();
GeolocationConfig(const GeolocationConfig&) = delete;
GeolocationConfig& operator=(const GeolocationConfig&) = delete;
~GeolocationConfig() override;
static void Create(mojo::PendingReceiver<mojom::GeolocationConfig> receiver);
void IsHighAccuracyLocationBeingCaptured(
IsHighAccuracyLocationBeingCapturedCallback callback) override;
};
} // namespace device
#endif // SERVICES_DEVICE_GEOLOCATION_GEOLOCATION_CONFIG_H_