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

Unified Diff: google_apis/gcm/engine/unregistration_request.cc

Issue 1548673002: Switch to standard integer types in google_apis/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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: google_apis/gcm/engine/unregistration_request.cc
diff --git a/google_apis/gcm/engine/unregistration_request.cc b/google_apis/gcm/engine/unregistration_request.cc
index 6cde58190459f8a6bf50265a9fd12152c0d88928..9e76807e5ae70d68f2767ad82edfd446b344fe88 100644
--- a/google_apis/gcm/engine/unregistration_request.cc
+++ b/google_apis/gcm/engine/unregistration_request.cc
@@ -35,13 +35,10 @@ const char kLoginHeader[] = "AidLogin";
} // namespace
-UnregistrationRequest::RequestInfo::RequestInfo(
- uint64 android_id,
- uint64 security_token,
- const std::string& app_id)
- : android_id(android_id),
- security_token(security_token),
- app_id(app_id) {
+UnregistrationRequest::RequestInfo::RequestInfo(uint64_t android_id,
+ uint64_t security_token,
+ const std::string& app_id)
+ : android_id(android_id), security_token(security_token), app_id(app_id) {
DCHECK(android_id != 0UL);
DCHECK(security_token != 0UL);
}
« no previous file with comments | « google_apis/gcm/engine/unregistration_request.h ('k') | google_apis/gcm/engine/unregistration_request_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698