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

Unified Diff: chrome/browser/chromeos/geolocation/geoposition.h

Issue 786693002: Move chrome/browser/chromeos/geolocation to chromeos/geolocation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add DEPS Created 6 years 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 | « chrome/browser/chromeos/geolocation/OWNERS ('k') | chrome/browser/chromeos/geolocation/geoposition.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/geolocation/geoposition.h
diff --git a/chrome/browser/chromeos/geolocation/geoposition.h b/chrome/browser/chromeos/geolocation/geoposition.h
deleted file mode 100644
index 64723f7d5ad8dc6e28c3e0e853fd1887d54c5895..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/geolocation/geoposition.h
+++ /dev/null
@@ -1,65 +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.
-
-#ifndef CHROME_BROWSER_CHROMEOS_GEOLOCATION_GEOPOSITION_H_
-#define CHROME_BROWSER_CHROMEOS_GEOLOCATION_GEOPOSITION_H_
-
-#include <string>
-
-#include "base/time/time.h"
-
-namespace chromeos {
-
-// This structure represents Google Maps Geolocation response.
-// Based on content/public/common/geoposition.h .
-struct 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 // CHROME_BROWSER_CHROMEOS_GEOLOCATION_GEOPOSITION_H_
« no previous file with comments | « chrome/browser/chromeos/geolocation/OWNERS ('k') | chrome/browser/chromeos/geolocation/geoposition.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698