Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Unified Diff: content/browser/geofencing/geofencing_provider.h

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698