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

Unified Diff: components/geolocation/public/interfaces/geolocation.mojom

Issue 1373883003: Move geolocation and permission mojoms into components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
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);
};
« no previous file with comments | « components/geolocation/public/interfaces/BUILD.gn ('k') | components/geolocation/public/interfaces/geolocation_interfaces.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698