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