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

Unified Diff: remoting/base/rate_counter.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
Patch Set: 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
« no previous file with comments | « remoting/base/rate_counter.h ('k') | remoting/base/rate_counter_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/rate_counter.cc
diff --git a/remoting/base/rate_counter.cc b/remoting/base/rate_counter.cc
index e6532da165541fb06c21cee39032572cf7b8627e..fdc798165b9afe770658bb42a5d7cebc35c9870d 100644
--- a/remoting/base/rate_counter.cc
+++ b/remoting/base/rate_counter.cc
@@ -17,7 +17,7 @@ RateCounter::RateCounter(base::TimeDelta time_window)
RateCounter::~RateCounter() {
}
-void RateCounter::Record(int64 value) {
+void RateCounter::Record(int64_t value) {
DCHECK(CalledOnValidThread());
base::Time current_time = CurrentTime();
« no previous file with comments | « remoting/base/rate_counter.h ('k') | remoting/base/rate_counter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698