| Index: device/geolocation/geoposition.cc
|
| diff --git a/content/public/common/geoposition.cc b/device/geolocation/geoposition.cc
|
| similarity index 93%
|
| rename from content/public/common/geoposition.cc
|
| rename to device/geolocation/geoposition.cc
|
| index d885d4e539c4891e9b4f16925d59a77c27598939..a97183007e65a5b9b825482dc463ff99a79b0da5 100644
|
| --- a/content/public/common/geoposition.cc
|
| +++ b/device/geolocation/geoposition.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "content/public/common/geoposition.h"
|
| +#include "device/geolocation/geoposition.h"
|
|
|
| namespace {
|
| // Sentinel values to mark invalid data. (WebKit carries companion is_valid
|
| @@ -16,7 +16,7 @@ const int kBadHeading = -1; // Heading must be non-negative.
|
| const int kBadSpeed = -1;
|
| }
|
|
|
| -namespace content {
|
| +namespace device {
|
|
|
| Geoposition::Geoposition()
|
| : latitude(kBadLatitudeLongitude),
|
| @@ -38,4 +38,4 @@ bool Geoposition::Validate() const {
|
| !timestamp.is_null();
|
| }
|
|
|
| -} // namespace content
|
| +} // namespace device
|
|
|