| // Copyright 2020 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 CHROME_BROWSER_INSTALLABLE_INSTALLED_WEBAPP_GEOLOCATION_BRIDGE_H_ |
| #define CHROME_BROWSER_INSTALLABLE_INSTALLED_WEBAPP_GEOLOCATION_BRIDGE_H_ |
| |
| #include <jni.h> |
| |
| #include "base/android/scoped_java_ref.h" |
| #include "base/memory/raw_ptr.h" |
| #include "mojo/public/cpp/bindings/receiver.h" |
| #include "services/device/public/mojom/geolocation.mojom.h" |
| #include "services/device/public/mojom/geoposition.mojom.h" |
| #include "url/gurl.h" |
| |
| class InstalledWebappGeolocationContext; |
| |
| // Implements the Geolocation Mojo interface. |
| class InstalledWebappGeolocationBridge : public device::mojom::Geolocation { |
| public: |
| // |context| must outlive this object. |
| InstalledWebappGeolocationBridge( |
| mojo::PendingReceiver<device::mojom::Geolocation> receiver, |
| const GURL& origin, |
| InstalledWebappGeolocationContext* context); |
| InstalledWebappGeolocationBridge(const InstalledWebappGeolocationBridge&) = |
| delete; |
| InstalledWebappGeolocationBridge& operator=( |
| const InstalledWebappGeolocationBridge&) = delete; |
| ~InstalledWebappGeolocationBridge() override; |
| |
| // Starts listening for updates. |
| void StartListeningForUpdates(); |
| void StopUpdates(); |
| |
| // Enables and disables geolocation override. |
| void SetOverride(const device::mojom::Geoposition& position); |
| void ClearOverride(); |
| |
| // Called by JNI on its thread looper. |
| void OnNewLocationAvailable(JNIEnv* env, |
| jdouble latitude, |
| jdouble longitude, |
| jdouble time_stamp, |
| jboolean has_altitude, |
| jdouble altitude, |
| jboolean has_accuracy, |
| jdouble accuracy, |
| jboolean has_heading, |
| jdouble heading, |
| jboolean has_speed, |
| jdouble speed); |
| void OnNewErrorAvailable(JNIEnv* env, jstring message); |
| |
| private: |
| // device::mojom::Geolocation: |
| void SetHighAccuracy(bool high_accuracy) override; |
| void QueryNextPosition(QueryNextPositionCallback callback) override; |
| |
| void OnConnectionError(); |
| |
| void OnLocationUpdate(const device::mojom::Geoposition& position); |
| void ReportCurrentPosition(); |
| |
| // Owns this object. |
| raw_ptr<InstalledWebappGeolocationContext> context_; |
| |
| // The callback passed to QueryNextPosition. |
| QueryNextPositionCallback position_callback_; |
| |
| // Valid if SetOverride() has been called and ClearOverride() has not |
| // subsequently been called. |
| device::mojom::Geoposition position_override_; |
| |
| device::mojom::Geoposition current_position_; |
| |
| const GURL origin_; |
| |
| // Whether this instance is currently observing location updates with high |
| // accuracy. |
| bool high_accuracy_; |
| |
| bool has_position_to_report_; |
| |
| base::android::ScopedJavaGlobalRef<jobject> java_ref_; |
| |
| // The binding between this object and the other end of the pipe. |
| mojo::Receiver<device::mojom::Geolocation> receiver_; |
| }; |
| |
| #endif // CHROME_BROWSER_INSTALLABLE_INSTALLED_WEBAPP_GEOLOCATION_BRIDGE_H_ |