| Index: webkit/chaos/ChaosGeoposition.h
|
| ===================================================================
|
| --- webkit/chaos/ChaosGeoposition.h (revision 0)
|
| +++ webkit/chaos/ChaosGeoposition.h (revision 0)
|
| @@ -0,0 +1,24 @@
|
| +#ifndef ChaosGeoposition_h
|
| +#define ChaosGeoposition_h
|
| +
|
| +#include <wtf/RefCounted.h>
|
| +#include <wtf/RefPtr.h>
|
| +
|
| +namespace WebCore {
|
| +
|
| +class ChaosCoordinates;
|
| +
|
| +class ChaosGeoposition : public RefCounted<ChaosGeoposition> {
|
| + public:
|
| + explicit ChaosGeoposition(ChaosCoordinates *coords) : coords_(coords) {
|
| + }
|
| + ChaosCoordinates *coords() const {
|
| + return coords_.get();
|
| + }
|
| + private:
|
| + RefPtr<ChaosCoordinates> coords_;
|
| +};
|
| +
|
| +} // namespace WebCore
|
| +
|
| +#endif // ndef ChaosGeoposition_h
|
|
|
| Property changes on: webkit/chaos/ChaosGeoposition.h
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|