// Copyright 2014 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_GEOLOCATION_IMPL_H_ #define DEVICE_GEOLOCATION_GEOLOCATION_IMPL_H_ #include #include "base/macros.h" #include "device/geolocation/geolocation_provider_impl.h" #include "mojo/public/cpp/bindings/binding.h" #include "services/device/public/mojom/geolocation.mojom.h" namespace device { class GeolocationProvider; class GeolocationContext; // Implements the Geolocation Mojo interface. class GeolocationImpl : public mojom::Geolocation { public: // |context| must outlive this object. GeolocationImpl(mojo::InterfaceRequest request, GeolocationContext* context); ~GeolocationImpl() override; // Starts listening for updates. void StartListeningForUpdates(); // Pauses and resumes sending updates to the client of this instance. void PauseUpdates(); void ResumeUpdates(); // Enables and disables geolocation override. void SetOverride(const mojom::Geoposition& position); void ClearOverride(); private: // mojom::Geolocation: void SetHighAccuracy(bool high_accuracy) override; void QueryNextPosition(QueryNextPositionCallback callback) override; void OnConnectionError(); void OnLocationUpdate(const mojom::Geoposition& position); void ReportCurrentPosition(); // The binding between this object and the other end of the pipe. mojo::Binding binding_; // Owns this object. GeolocationContext* context_; // Token that unsubscribes from GeolocationProvider updates when destroyed. std::unique_ptr geolocation_subscription_; // The callback passed to QueryNextPosition. QueryNextPositionCallback position_callback_; // Valid if SetOverride() has been called and ClearOverride() has not // subsequently been called. mojom::Geoposition position_override_; mojom::Geoposition current_position_; // Whether this instance is currently observing location updates with high // accuracy. bool high_accuracy_; bool has_position_to_report_; DISALLOW_COPY_AND_ASSIGN(GeolocationImpl); }; } // namespace device #endif // DEVICE_GEOLOCATION_GEOLOCATION_IMPL_H_