Index: content/browser/geofencing/geofencing_provider.h |
diff --git a/content/browser/geofencing/geofencing_provider.h b/content/browser/geofencing/geofencing_provider.h |
index ea2c207ef0e93012239705bc743ebf53d2921bd2..a2052a42951aaffed017b525820bd0d0ce008cc0 100644 |
--- a/content/browser/geofencing/geofencing_provider.h |
+++ b/content/browser/geofencing/geofencing_provider.h |
@@ -5,7 +5,8 @@ |
#ifndef CONTENT_BROWSER_GEOFENCING_GEOFENCING_PROVIDER_H_ |
#define CONTENT_BROWSER_GEOFENCING_GEOFENCING_PROVIDER_H_ |
-#include "base/basictypes.h" |
+#include <stdint.h> |
+ |
#include "base/callback_forward.h" |
#include "content/common/geofencing_types.h" |
@@ -30,13 +31,13 @@ class GeofencingProvider { |
// implemented yet. |
// Implementations of RegisterRegion must asynchronously call the |callback| |
// to indicate success or failure. |
- virtual void RegisterRegion(int64 geofencing_registration_id, |
+ virtual void RegisterRegion(int64_t geofencing_registration_id, |
const blink::WebCircularGeofencingRegion& region, |
const StatusCallback& callback) = 0; |
// Called by |GeofencingService| to unregister an existing registration. Will |
// only be called once for each registration. |
- virtual void UnregisterRegion(int64 geofencing_registration_id) = 0; |
+ virtual void UnregisterRegion(int64_t geofencing_registration_id) = 0; |
}; |
} // namespace content |