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 ea4b6a1e66e8ecb654be1506de43ce54ce26f4bf..53a3b2086d64239f5e632e1e4218980ab5478237 100644 |
--- a/content/browser/geofencing/geofencing_dispatcher_host.h |
+++ b/content/browser/geofencing/geofencing_dispatcher_host.h |
@@ -5,6 +5,9 @@ |
#ifndef CONTENT_BROWSER_GEOFENCING_GEOFENCING_DISPATCHER_HOST_H_ |
#define CONTENT_BROWSER_GEOFENCING_GEOFENCING_DISPATCHER_HOST_H_ |
+#include <stdint.h> |
+ |
+#include "base/macros.h" |
#include "content/common/geofencing_types.h" |
#include "content/public/browser/browser_message_filter.h" |
@@ -31,14 +34,14 @@ class GeofencingDispatcherHost : public BrowserMessageFilter { |
int request_id, |
const std::string& region_id, |
const blink::WebCircularGeofencingRegion& region, |
- int64 service_worker_registration_id); |
+ int64_t service_worker_registration_id); |
void OnUnregisterRegion(int thread_id, |
int request_id, |
const std::string& region_id, |
- int64 service_worker_registration_id); |
+ int64_t service_worker_registration_id); |
void OnGetRegisteredRegions(int thread_id, |
int request_id, |
- int64 service_worker_registration_id); |
+ int64_t service_worker_registration_id); |
void RegisterRegionCompleted(int thread_id, |
int request_id, |