summaryrefslogtreecommitdiffstats
path: root/chromeos/geolocation/geoposition.h
diff options
context:
space:
mode:
authorsatorux <satorux@chromium.org>2014-12-12 14:30:37 -0800
committerCommit bot <commit-bot@chromium.org>2014-12-12 22:31:11 +0000
commitde6a5dcfdef67c2ef141db012293b633fc96ae42 (patch)
tree640d57068e183413ad08224e7ed86eebed78e9bc /chromeos/geolocation/geoposition.h
parent2209d5e44d1271b3c60d7517639697759b1f5275 (diff)
downloadchromium_src-de6a5dcfdef67c2ef141db012293b633fc96ae42.zip
chromium_src-de6a5dcfdef67c2ef141db012293b633fc96ae42.tar.gz
chromium_src-de6a5dcfdef67c2ef141db012293b633fc96ae42.tar.bz2
Move chrome/browser/chromeos/geolocation to chromeos/geolocation
In favor of less things to have in chrome/browser/chromeos. BUG=437691 TEST=everything builds as before Review URL: https://codereview.chromium.org/786693002 Cr-Commit-Position: refs/heads/master@{#308183}
Diffstat (limited to 'chromeos/geolocation/geoposition.h')
-rw-r--r--chromeos/geolocation/geoposition.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/chromeos/geolocation/geoposition.h b/chromeos/geolocation/geoposition.h
new file mode 100644
index 0000000..543e3ed
--- /dev/null
+++ b/chromeos/geolocation/geoposition.h
@@ -0,0 +1,66 @@
+// 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.
+
+#ifndef CHROMEOS_GEOLOCATION_GEOPOSITION_H_
+#define CHROMEOS_GEOLOCATION_GEOPOSITION_H_
+
+#include <string>
+
+#include "base/time/time.h"
+#include "chromeos/chromeos_export.h"
+
+namespace chromeos {
+
+// This structure represents Google Maps Geolocation response.
+// Based on content/public/common/geoposition.h .
+struct CHROMEOS_EXPORT Geoposition {
+ // Geolocation API client status.
+ // (Server status is reported in "error_code" field.)
+ enum Status {
+ STATUS_NONE,
+ STATUS_OK, // Response successful.
+ STATUS_SERVER_ERROR, // Received error object.
+ STATUS_NETWORK_ERROR, // Received bad or no response.
+ STATUS_TIMEOUT, // Request stopped because of timeout.
+ STATUS_LAST = STATUS_TIMEOUT
+ };
+
+ // All fields are initialized to sentinel values marking them as invalid. The
+ // status is set to STATUS_NONE.
+ Geoposition();
+
+ // A valid fix has a valid latitude, longitude, accuracy and timestamp.
+ bool Valid() const;
+
+ // Serialize to string.
+ std::string ToString() const;
+
+ // Latitude in decimal degrees north.
+ double latitude;
+
+ // Longitude in decimal degrees west.
+ double longitude;
+
+ // Accuracy of horizontal position in meters.
+ double accuracy;
+
+ // Error object data:
+ // Value of "error.code".
+ int error_code;
+
+ // Human-readable error message.
+ std::string error_message;
+
+ // Absolute time, when this position was acquired. This is
+ // taken from the host computer's system clock (i.e. from Time::Now(), not the
+ // source device's clock).
+ base::Time timestamp;
+
+ // See enum above.
+ Status status;
+};
+
+} // namespace chromeos
+
+#endif // CHROMEOS_GEOLOCATION_GEOPOSITION_H_