| 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 14e32646a65d769526873367acd016585c1c520e..ab0b6fdcd96eb54057b75e44498f19b6601d86ff 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:
|
| virtual ~GeofencingDispatcherHost();
|
| @@ -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);
|
|
|