blob: e19e504bcd249c29a46e5d645017e9f3857e581f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// 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 SERVICES_DEVICE_GEOLOCATION_GEOLOCATION_IMPL_H_
#define SERVICES_DEVICE_GEOLOCATION_GEOLOCATION_IMPL_H_
#include <memory>
#include "base/macros.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "services/device/geolocation/geolocation_provider_impl.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::PendingReceiver<mojom::Geolocation> receiver,
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::Receiver<mojom::Geolocation> receiver_;
// Owns this object.
GeolocationContext* context_;
// Token that unsubscribes from GeolocationProvider updates when destroyed.
std::unique_ptr<GeolocationProvider::Subscription> 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 // SERVICES_DEVICE_GEOLOCATION_GEOLOCATION_IMPL_H_
|