forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocation_provider_android.h
40 lines (31 loc) · 1.22 KB
/
location_provider_android.h
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
// Copyright (c) 2012 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_LOCATION_PROVIDER_ANDROID_H_
#define DEVICE_GEOLOCATION_LOCATION_PROVIDER_ANDROID_H_
#include "base/compiler_specific.h"
#include "device/geolocation/geoposition.h"
#include "device/geolocation/location_provider.h"
namespace device {
class AndroidLocationApiAdapter;
struct Geoposition;
// Location provider for Android using the platform provider over JNI.
class LocationProviderAndroid : public LocationProvider {
public:
LocationProviderAndroid();
~LocationProviderAndroid() override;
// Called by the AndroidLocationApiAdapter.
void NotifyNewGeoposition(const Geoposition& position);
// LocationProvider.
void SetUpdateCallback(
const LocationProviderUpdateCallback& callback) override;
bool StartProvider(bool high_accuracy) override;
void StopProvider() override;
const Geoposition& GetPosition() override;
void OnPermissionGranted() override;
private:
Geoposition last_position_;
LocationProviderUpdateCallback callback_;
};
} // namespace device
#endif // DEVICE_GEOLOCATION_LOCATION_PROVIDER_ANDROID_H_