| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_GEOFENCING_GEOFENCING_DISPATCHER_HOST_H_ | 5 #ifndef CONTENT_BROWSER_GEOFENCING_GEOFENCING_DISPATCHER_HOST_H_ |
| 6 #define CONTENT_BROWSER_GEOFENCING_GEOFENCING_DISPATCHER_HOST_H_ | 6 #define CONTENT_BROWSER_GEOFENCING_GEOFENCING_DISPATCHER_HOST_H_ |
| 7 | 7 |
| 8 #include "content/common/geofencing_status.h" | 8 #include "content/common/geofencing_types.h" |
| 9 #include "content/public/browser/browser_message_filter.h" | 9 #include "content/public/browser/browser_message_filter.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 struct WebCircularGeofencingRegion; | 12 struct WebCircularGeofencingRegion; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace content { | 15 namespace content { |
| 16 | 16 |
| 17 class GeofencingManager; | 17 class GeofencingManager; |
| 18 class ServiceWorkerContextWrapper; | 18 class ServiceWorkerContextWrapper; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 49 | 49 |
| 50 scoped_refptr<GeofencingManager> manager_; | 50 scoped_refptr<GeofencingManager> manager_; |
| 51 base::WeakPtrFactory<GeofencingDispatcherHost> weak_factory_; | 51 base::WeakPtrFactory<GeofencingDispatcherHost> weak_factory_; |
| 52 | 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(GeofencingDispatcherHost); | 53 DISALLOW_COPY_AND_ASSIGN(GeofencingDispatcherHost); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace content | 56 } // namespace content |
| 57 | 57 |
| 58 #endif // CONTENT_BROWSER_GEOFENCING_GEOFENCING_DISPATCHER_HOST_H_ | 58 #endif // CONTENT_BROWSER_GEOFENCING_GEOFENCING_DISPATCHER_HOST_H_ |
| OLD | NEW |