Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(416)

Side by Side Diff: device/geolocation/public/interfaces/geolocation_manager.mojom

Issue 2975683002: Add GeolocationManager service (Closed)
Patch Set: Fix Windows dll-interface problem Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698