summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/android/GeolocationServiceBridge.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/android/GeolocationServiceBridge.h')
-rw-r--r--WebCore/platform/android/GeolocationServiceBridge.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/WebCore/platform/android/GeolocationServiceBridge.h b/WebCore/platform/android/GeolocationServiceBridge.h
index 5d26142..3997d65 100644
--- a/WebCore/platform/android/GeolocationServiceBridge.h
+++ b/WebCore/platform/android/GeolocationServiceBridge.h
@@ -31,6 +31,7 @@
namespace WebCore {
+class Frame;
class GeolocationServiceAndroid;
class Geoposition;
@@ -40,7 +41,7 @@ class Geoposition;
class GeolocationServiceBridge {
public:
typedef GeolocationServiceAndroid ListenerInterface;
- GeolocationServiceBridge(ListenerInterface* listener);
+ GeolocationServiceBridge(ListenerInterface* listener, Frame* frame);
~GeolocationServiceBridge();
bool start();
@@ -53,7 +54,7 @@ public:
static PassRefPtr<Geoposition> toGeoposition(JNIEnv *env, const jobject &location);
private:
- void startJavaImplementation();
+ void startJavaImplementation(Frame* frame);
void stopJavaImplementation();
ListenerInterface* m_listener;