| Index: device/geolocation/geoposition.h
|
| diff --git a/content/public/common/geoposition.h b/device/geolocation/geoposition.h
|
| similarity index 88%
|
| rename from content/public/common/geoposition.h
|
| rename to device/geolocation/geoposition.h
|
| index 23b29078e1555a082090282fef50a51487ee31f3..55006c5786dcd3fce71d6364961a118cf413bd6b 100644
|
| --- a/content/public/common/geoposition.h
|
| +++ b/device/geolocation/geoposition.h
|
| @@ -6,17 +6,17 @@
|
| // fix. It was originally derived from:
|
| // http://gears.googlecode.com/svn/trunk/gears/geolocation/geolocation.h
|
|
|
| -#ifndef CONTENT_PUBLIC_COMMON_GEOPOSITION_H_
|
| -#define CONTENT_PUBLIC_COMMON_GEOPOSITION_H_
|
| +#ifndef DEVICE_GEOLOCATION_GEOPOSITION_H_
|
| +#define DEVICE_GEOLOCATION_GEOPOSITION_H_
|
|
|
| #include <string>
|
|
|
| #include "base/time/time.h"
|
| -#include "content/common/content_export.h"
|
| +#include "device/geolocation/geolocation_export.h"
|
|
|
| -namespace content {
|
| +namespace device {
|
|
|
| -struct CONTENT_EXPORT Geoposition {
|
| +struct DEVICE_GEOLOCATION_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 CONTENT_EXPORT Geoposition {
|
| std::string error_message;
|
| };
|
|
|
| -} // namespace content
|
| +} // namespace device
|
|
|
| -#endif // CONTENT_PUBLIC_COMMON_GEOPOSITION_H_
|
| +#endif // DEVICE_GEOLOCATION_GEOPOSITION_H_
|
|
|