| Index: webkit/chaos/Chaos.h
|
| ===================================================================
|
| --- webkit/chaos/Chaos.h (revision 0)
|
| +++ webkit/chaos/Chaos.h (revision 0)
|
| @@ -0,0 +1,21 @@
|
| +#ifndef Chaos_h
|
| +#define Chaos_h
|
| +
|
| +#include <wtf/RefPtr.h>
|
| +// FIXME: seems to me I shouldn't have to include this
|
| +#include "ChaosGeolocation.h"
|
| +
|
| +namespace WebCore {
|
| +
|
| +class ChaosGeolocation;
|
| +
|
| +class Chaos : public RefCounted<Chaos> {
|
| + public:
|
| + ChaosGeolocation *geolocation() const;
|
| + private:
|
| + mutable RefPtr<ChaosGeolocation> geolocation_;
|
| +};
|
| +
|
| +} // namespace WebCore
|
| +
|
| +#endif // ndef Chaos_h
|
|
|
| Property changes on: webkit/chaos/Chaos.h
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|