OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 module device.mojom; | |
6 | |
7 // The Geolocation manager provides a service for trusted consumers to get the | |
Ken Rockot(use gerrit already)
2017/07/10 19:38:55
nit: please don't use the word "service" in an IPC
asimjour1
2017/07/10 20:45:50
Done.
| |
8 // information across all the frames. | |
9 interface GeolocationManager { | |
Ken Rockot(use gerrit already)
2017/07/10 19:38:55
Maybe GeolocationConfig is a more accurate name?
asimjour1
2017/07/10 20:45:50
The name came from
https://bugs.chromium.org/p/chr
| |
10 // Returns true if the location is being captured and high_accurary is | |
11 // enabled. | |
12 IsHighAccuracyLocationBeingCaptured() => (bool high_accuracy); | |
amp
2017/07/10 20:13:25
Why not add this to the existing geolocation.mojom
asimjour1
2017/07/10 20:45:50
Geolocation.mojom is per-frame interface and it is
| |
13 }; | |
OLD | NEW |