| Index: webkit/chaos/ChaosCoordinates.h
|
| ===================================================================
|
| --- webkit/chaos/ChaosCoordinates.h (revision 0)
|
| +++ webkit/chaos/ChaosCoordinates.h (revision 0)
|
| @@ -0,0 +1,27 @@
|
| +#ifndef ChaosCoordinates_h
|
| +#define ChaosCoordinates_h
|
| +
|
| +#include <wtf/RefCounted.h>
|
| +
|
| +namespace WebCore {
|
| +
|
| +class ChaosCoordinates : public RefCounted<ChaosCoordinates> {
|
| + public:
|
| + ChaosCoordinates(double latitude, double longitude, double accoracy);
|
| + double latitude() const;
|
| + double longitude() const;
|
| + double altitude() const;
|
| + double accuracy() const;
|
| + double altitudeAccuracy() const;
|
| + double heading() const;
|
| + double speed() const;
|
| +
|
| + private:
|
| + double latitude_;
|
| + double longitude_;
|
| + double accuracy_;
|
| +};
|
| +
|
| +} // namespace WebCore
|
| +
|
| +#endif // ndef ChaosCoordinates_h
|
|
|
| Property changes on: webkit/chaos/ChaosCoordinates.h
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|