Chromium Code Reviews| Index: content/browser/geofencing/geofencing_dispatcher_host.h |
| diff --git a/content/browser/geofencing/geofencing_dispatcher_host.h b/content/browser/geofencing/geofencing_dispatcher_host.h |
| index ab0b6fdcd96eb54057b75e44498f19b6601d86ff..63aee62e5aac76e5e62e2424d772fd15d4fafa39 100644 |
| --- a/content/browser/geofencing/geofencing_dispatcher_host.h |
| +++ b/content/browser/geofencing/geofencing_dispatcher_host.h |
| @@ -15,6 +15,7 @@ struct WebCircularGeofencingRegion; |
| namespace content { |
| class GeofencingManager; |
| +class ServiceWorkerContextWrapper; |
| class GeofencingDispatcherHost : public BrowserMessageFilter { |
| public: |
| @@ -29,11 +30,15 @@ class GeofencingDispatcherHost : public BrowserMessageFilter { |
| void OnRegisterRegion(int thread_id, |
| int request_id, |
| const std::string& region_id, |
| - const blink::WebCircularGeofencingRegion& region); |
| + const blink::WebCircularGeofencingRegion& region, |
| + int64 service_worker_registration_id); |
| void OnUnregisterRegion(int thread_id, |
| int request_id, |
| - const std::string& region_id); |
| - void OnGetRegisteredRegions(int thread_id, int request_id); |
| + const std::string& region_id, |
|
palmer
2014/10/16 01:22:34
What is the lexical/syntactic structure of these r
Marijn Kruisselbrink
2014/10/16 17:00:19
There is no lexical/syntactic structure, these are
|
| + int64 service_worker_registration_id); |
| + void OnGetRegisteredRegions(int thread_id, |
| + int request_id, |
| + int64 service_worker_registration_id); |
| void RegisterRegionCompleted(int thread_id, |
| int request_id, |