diff options
Diffstat (limited to 'content/browser/geofencing/geofencing_dispatcher_host.h')
-rw-r--r-- | content/browser/geofencing/geofencing_dispatcher_host.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/geofencing/geofencing_dispatcher_host.h b/content/browser/geofencing/geofencing_dispatcher_host.h index 86858b8..16bc2b4 100644 --- a/content/browser/geofencing/geofencing_dispatcher_host.h +++ b/content/browser/geofencing/geofencing_dispatcher_host.h @@ -14,11 +14,11 @@ struct WebCircularGeofencingRegion; namespace content { -class BrowserContext; +class GeofencingManager; class GeofencingDispatcherHost : public BrowserMessageFilter { public: - explicit GeofencingDispatcherHost(BrowserContext* browser_context); + explicit GeofencingDispatcherHost(GeofencingManager* geofencing_manager); private: ~GeofencingDispatcherHost() override; @@ -42,7 +42,7 @@ class GeofencingDispatcherHost : public BrowserMessageFilter { int request_id, GeofencingStatus result); - BrowserContext* browser_context_; + scoped_refptr<GeofencingManager> manager_; base::WeakPtrFactory<GeofencingDispatcherHost> weak_factory_; DISALLOW_COPY_AND_ASSIGN(GeofencingDispatcherHost); |