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

Unified Diff: content/public/common/mojo_geoposition.mojom

Issue 680323002: Revert of Partially convert geolocation IPC to Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « content/public/common/OWNERS ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/mojo_geoposition.mojom
diff --git a/content/public/common/mojo_geoposition.mojom b/content/public/common/mojo_geoposition.mojom
deleted file mode 100644
index f9818b56eb5bc7be84fcdd3aa8fc757352dc8c6e..0000000000000000000000000000000000000000
--- a/content/public/common/mojo_geoposition.mojom
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright 2014 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.
-
-// This file declares the Geoposition structure, used to represent a position
-// fix. It was originally derived from:
-// http://gears.googlecode.com/svn/trunk/gears/geolocation/geolocation.h
-// TODO(blundell): Investigate killing content::Geoposition in favor of using
-// this struct everywhere (and renaming it to Geoposition).
-
-module content {
-
-struct MojoGeoposition {
- // These values follow the W3C geolocation specification and can be returned
- // to JavaScript without the need for a conversion.
- enum ErrorCode {
- ERROR_CODE_NONE = 0, // Chrome addition.
- ERROR_CODE_PERMISSION_DENIED = 1,
- ERROR_CODE_POSITION_UNAVAILABLE = 2,
- ERROR_CODE_TIMEOUT = 3,
- ERROR_CODE_LAST = ERROR_CODE_TIMEOUT
- };
-
- // Whether this geoposition is valid.
- bool valid;
-
- // These properties correspond to those of the JavaScript Position object
- // although their types may differ.
- // Latitude in decimal degrees north (WGS84 coordinate frame).
- double latitude;
- // Longitude in decimal degrees west (WGS84 coordinate frame).
- double longitude;
- // Altitude in meters (above WGS84 datum).
- double altitude;
- // Accuracy of horizontal position in meters.
- double accuracy;
- // Accuracy of altitude in meters.
- double altitude_accuracy;
- // Heading in decimal degrees clockwise from true north.
- double heading;
- // Horizontal component of device velocity in meters per second.
- double speed;
- // TODO(blundell): If I need to represent this differently to use this
- // struct to replace content::Geolocation, I'll need to convert
- // correctly into seconds-since-epoch when using this in
- // GeolocationDispatcher::OnLocationUpdate().
- // Time of position measurement in seconds since Epoch in UTC time. This is
- // taken from the host computer's system clock (i.e. from Time::Now(), not the
- // source device's clock).
- double timestamp;
-
- // Error code, see enum above.
- ErrorCode error_code;
- // Human-readable error message.
- string error_message;
-};
-
-}
« no previous file with comments | « content/public/common/OWNERS ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698