| Index: public/platform/WebGeofencingProvider.h
|
| diff --git a/public/platform/WebGeofencingProvider.h b/public/platform/WebGeofencingProvider.h
|
| index d8edcbf48c0486fb11c3596c44f3e1f9cb5fad30..6aea6b9d68dfd4b3ed172ea23b0ff5584953983b 100644
|
| --- a/public/platform/WebGeofencingProvider.h
|
| +++ b/public/platform/WebGeofencingProvider.h
|
| @@ -25,17 +25,14 @@ public:
|
|
|
| // Registers a region.
|
| // Ownership of the WebGeofencingCallbacks is transferred to the client.
|
| - virtual void registerRegion(const WebString& regionId, const WebCircularGeofencingRegion&, WebGeofencingCallbacks*) { }
|
| virtual void registerRegion(const WebString& regionId, const WebCircularGeofencingRegion&, WebServiceWorkerRegistration*, WebGeofencingCallbacks*) { }
|
|
|
| // Unregisters a region.
|
| // Ownership of the WebGeofencingCallbacks is transferred to the client.
|
| - virtual void unregisterRegion(const WebString& regionId, WebGeofencingCallbacks*) { }
|
| virtual void unregisterRegion(const WebString& regionId, WebServiceWorkerRegistration*, WebGeofencingCallbacks*) { }
|
|
|
| // Returns all the currently registered regions.
|
| // Ownership of the WebGeofencingRegionsCallbacks is transferred to the client.
|
| - virtual void getRegisteredRegions(WebGeofencingRegionsCallbacks*) { }
|
| virtual void getRegisteredRegions(WebServiceWorkerRegistration*, WebGeofencingRegionsCallbacks*) { }
|
| };
|
|
|
|
|