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

Unified Diff: google_apis/gcm/monitoring/fake_gcm_stats_recorder.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/monitoring/fake_gcm_stats_recorder.cc
diff --git a/google_apis/gcm/monitoring/fake_gcm_stats_recorder.cc b/google_apis/gcm/monitoring/fake_gcm_stats_recorder.cc
index e61570ac80626f53bfef278164549e75c388f4c1..5b138d2fa7744d4d2af00750131c871ad6f00408 100644
--- a/google_apis/gcm/monitoring/fake_gcm_stats_recorder.cc
+++ b/google_apis/gcm/monitoring/fake_gcm_stats_recorder.cc
@@ -12,11 +12,10 @@ FakeGCMStatsRecorder::FakeGCMStatsRecorder() {
FakeGCMStatsRecorder::~FakeGCMStatsRecorder() {
}
-void FakeGCMStatsRecorder::RecordCheckinInitiated(uint64 android_id) {
-}
+void FakeGCMStatsRecorder::RecordCheckinInitiated(uint64_t android_id) {}
-void FakeGCMStatsRecorder::RecordCheckinDelayedDueToBackoff(int64 delay_msec) {
-}
+void FakeGCMStatsRecorder::RecordCheckinDelayedDueToBackoff(
+ int64_t delay_msec) {}
void FakeGCMStatsRecorder::RecordCheckinSuccess() {
}
@@ -28,8 +27,7 @@ void FakeGCMStatsRecorder::RecordConnectionInitiated(const std::string& host) {
}
void FakeGCMStatsRecorder::RecordConnectionDelayedDueToBackoff(
- int64 delay_msec) {
-}
+ int64_t delay_msec) {}
void FakeGCMStatsRecorder::RecordConnectionSuccess() {
}
@@ -55,9 +53,8 @@ void FakeGCMStatsRecorder::RecordRegistrationResponse(
void FakeGCMStatsRecorder::RecordRegistrationRetryDelayed(
const std::string& app_id,
const std::string& source,
- int64 delay_msec,
- int retries_left) {
-}
+ int64_t delay_msec,
+ int retries_left) {}
void FakeGCMStatsRecorder::RecordUnregistrationSent(
const std::string& app_id, const std::string& source) {
@@ -72,9 +69,8 @@ void FakeGCMStatsRecorder::RecordUnregistrationResponse(
void FakeGCMStatsRecorder::RecordUnregistrationRetryDelayed(
const std::string& app_id,
const std::string& source,
- int64 delay_msec,
- int retries_left) {
-}
+ int64_t delay_msec,
+ int retries_left) {}
void FakeGCMStatsRecorder::RecordDataMessageReceived(
const std::string& app_id,
« no previous file with comments | « google_apis/gcm/monitoring/fake_gcm_stats_recorder.h ('k') | google_apis/gcm/monitoring/gcm_stats_recorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698