| Index: webkit/chaos/ChaosPositionCallback.h
|
| ===================================================================
|
| --- webkit/chaos/ChaosPositionCallback.h (revision 0)
|
| +++ webkit/chaos/ChaosPositionCallback.h (revision 0)
|
| @@ -0,0 +1,18 @@
|
| +#ifndef ChaosPositionCallback_h
|
| +#define ChaosPositionCallback_h
|
| +
|
| +#include <wtf/RefCounted.h>
|
| +
|
| +namespace WebCore {
|
| +
|
| + class ChaosGeoposition;
|
| +
|
| + class ChaosPositionCallback : public RefCounted<ChaosPositionCallback> {
|
| + public:
|
| + virtual ~ChaosPositionCallback() { }
|
| + virtual void handleEvent(ChaosGeoposition* position) = 0;
|
| + };
|
| +
|
| +} // namespace WebCore
|
| +
|
| +#endif // ndef ChaosPositionCallback_h
|
|
|
| Property changes on: webkit/chaos/ChaosPositionCallback.h
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|