| OLD | NEW |
| (Empty) | |
| 1 #ifndef ChaosGeoposition_h |
| 2 #define ChaosGeoposition_h |
| 3 |
| 4 #include <wtf/RefCounted.h> |
| 5 #include <wtf/RefPtr.h> |
| 6 |
| 7 namespace WebCore { |
| 8 |
| 9 class ChaosCoordinates; |
| 10 |
| 11 class ChaosGeoposition : public RefCounted<ChaosGeoposition> { |
| 12 public: |
| 13 explicit ChaosGeoposition(ChaosCoordinates *coords) : coords_(coords) { |
| 14 } |
| 15 ChaosCoordinates *coords() const { |
| 16 return coords_.get(); |
| 17 } |
| 18 private: |
| 19 RefPtr<ChaosCoordinates> coords_; |
| 20 }; |
| 21 |
| 22 } // namespace WebCore |
| 23 |
| 24 #endif // ndef ChaosGeoposition_h |
| OLD | NEW |