| Index: content/public/common/geoposition.h
|
| diff --git a/device/geolocation/geoposition.h b/content/public/common/geoposition.h
|
| similarity index 88%
|
| rename from device/geolocation/geoposition.h
|
| rename to content/public/common/geoposition.h
|
| index 55006c5786dcd3fce71d6364961a118cf413bd6b..23b29078e1555a082090282fef50a51487ee31f3 100644
|
| --- a/device/geolocation/geoposition.h
|
| +++ b/content/public/common/geoposition.h
|
| @@ -6,17 +6,17 @@
|
| // fix. It was originally derived from:
|
| // http://gears.googlecode.com/svn/trunk/gears/geolocation/geolocation.h
|
|
|
| -#ifndef DEVICE_GEOLOCATION_GEOPOSITION_H_
|
| -#define DEVICE_GEOLOCATION_GEOPOSITION_H_
|
| +#ifndef CONTENT_PUBLIC_COMMON_GEOPOSITION_H_
|
| +#define CONTENT_PUBLIC_COMMON_GEOPOSITION_H_
|
|
|
| #include <string>
|
|
|
| #include "base/time/time.h"
|
| -#include "device/geolocation/geolocation_export.h"
|
| +#include "content/common/content_export.h"
|
|
|
| -namespace device {
|
| +namespace content {
|
|
|
| -struct DEVICE_GEOLOCATION_EXPORT Geoposition {
|
| +struct CONTENT_EXPORT Geoposition {
|
| public:
|
| // These values follow the W3C geolocation specification and can be returned
|
| // to JavaScript without the need for a conversion.
|
| @@ -64,6 +64,6 @@ struct DEVICE_GEOLOCATION_EXPORT Geoposition {
|
| std::string error_message;
|
| };
|
|
|
| -} // namespace device
|
| +} // namespace content
|
|
|
| -#endif // DEVICE_GEOLOCATION_GEOPOSITION_H_
|
| +#endif // CONTENT_PUBLIC_COMMON_GEOPOSITION_H_
|
|
|