| OLD | NEW |
| (Empty) | |
| 1 #ifndef ChaosCoordinates_h |
| 2 #define ChaosCoordinates_h |
| 3 |
| 4 #include <wtf/RefCounted.h> |
| 5 |
| 6 namespace WebCore { |
| 7 |
| 8 class ChaosCoordinates : public RefCounted<ChaosCoordinates> { |
| 9 public: |
| 10 ChaosCoordinates(double latitude, double longitude, double accoracy); |
| 11 double latitude() const; |
| 12 double longitude() const; |
| 13 double altitude() const; |
| 14 double accuracy() const; |
| 15 double altitudeAccuracy() const; |
| 16 double heading() const; |
| 17 double speed() const; |
| 18 |
| 19 private: |
| 20 double latitude_; |
| 21 double longitude_; |
| 22 double accuracy_; |
| 23 }; |
| 24 |
| 25 } // namespace WebCore |
| 26 |
| 27 #endif // ndef ChaosCoordinates_h |
| OLD | NEW |