diff options
Diffstat (limited to 'WebCore/platform/GeolocationService.h')
| -rw-r--r-- | WebCore/platform/GeolocationService.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/platform/GeolocationService.h b/WebCore/platform/GeolocationService.h index cebf313..f991f67 100644 --- a/WebCore/platform/GeolocationService.h +++ b/WebCore/platform/GeolocationService.h @@ -47,7 +47,12 @@ public: static GeolocationService* create(GeolocationServiceClient*); virtual ~GeolocationService() { } +#if PLATFORM(ANDROID) + // TODO: Upstream to webkit.org. See https://bugs.webkit.org/show_bug.cgi?id=34082 + virtual bool startUpdating(PositionOptions*, bool suspend) { return false; } +#else virtual bool startUpdating(PositionOptions*) { return false; } +#endif virtual void stopUpdating() { } virtual void suspend() { } |
