summaryrefslogtreecommitdiffstats
path: root/WebCore/page/GeolocationClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/page/GeolocationClient.h')
-rw-r--r--WebCore/page/GeolocationClient.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/WebCore/page/GeolocationClient.h b/WebCore/page/GeolocationClient.h
index c646f91..44cb909 100644
--- a/WebCore/page/GeolocationClient.h
+++ b/WebCore/page/GeolocationClient.h
@@ -28,6 +28,7 @@
namespace WebCore {
+class Geolocation;
class GeolocationPosition;
class GeolocationClient {
@@ -43,6 +44,9 @@ public:
virtual void setEnableHighAccuracy(bool) = 0;
virtual GeolocationPosition* lastPosition() = 0;
+ virtual void requestPermission(Geolocation*) = 0;
+ virtual void cancelPermissionRequest(Geolocation*) = 0;
+
protected:
virtual ~GeolocationClient() { }
};