| 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_SERVICE_H_ | 5 #ifndef CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_ |
| 6 #define CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_ | 6 #define CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 13 #include "content/common/geofencing_status.h" | 13 #include "content/common/geofencing_types.h" |
| 14 | 14 |
| 15 template <typename T> | 15 template <typename T> |
| 16 struct DefaultSingletonTraits; | 16 struct DefaultSingletonTraits; |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 struct WebCircularGeofencingRegion; | 19 struct WebCircularGeofencingRegion; |
| 20 }; | 20 }; |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| 23 | 23 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 int64 next_registration_id_; | 96 int64 next_registration_id_; |
| 97 RegistrationsMap registrations_; | 97 RegistrationsMap registrations_; |
| 98 scoped_ptr<GeofencingProvider> provider_; | 98 scoped_ptr<GeofencingProvider> provider_; |
| 99 | 99 |
| 100 DISALLOW_COPY_AND_ASSIGN(GeofencingServiceImpl); | 100 DISALLOW_COPY_AND_ASSIGN(GeofencingServiceImpl); |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 } // namespace content | 103 } // namespace content |
| 104 | 104 |
| 105 #endif // CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_ | 105 #endif // CONTENT_BROWSER_GEOFENCING_GEOFENCING_SERVICE_H_ |
| OLD | NEW |