| Index: components/geolocation/public/interfaces/geolocation.mojom
|
| diff --git a/content/common/geolocation_service.mojom b/components/geolocation/public/interfaces/geolocation.mojom
|
| similarity index 85%
|
| rename from content/common/geolocation_service.mojom
|
| rename to components/geolocation/public/interfaces/geolocation.mojom
|
| index a9c4e48864649236c9664510c8b84187225c99e5..9be6e3fcafa4c776b540f3d9293094a40998d89e 100644
|
| --- a/content/common/geolocation_service.mojom
|
| +++ b/components/geolocation/public/interfaces/geolocation.mojom
|
| @@ -2,9 +2,9 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -module content;
|
| +module geolocation;
|
|
|
| -import "content/public/common/mojo_geoposition.mojom";
|
| +import "geoposition.mojom";
|
|
|
| // The Geolocation service provides updates on the device's location. By
|
| // default, it provides updates with low accuracy, but |SetHighAccuracy()| may
|
| @@ -16,5 +16,5 @@ interface GeolocationService {
|
| // position) if this is the first call to QueryNextPosition on this instance.
|
| // Position updates may be throttled by the service. Overlapping calls to
|
| // this method are prohibited and will be treated as a connection error.
|
| - QueryNextPosition() => (MojoGeoposition geoposition);
|
| + QueryNextPosition() => (Geoposition geoposition);
|
| };
|
|
|