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

Unified Diff: media/cast/test/utility/tap_proxy.cc

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: media/cast/test/utility/tap_proxy.cc
diff --git a/media/cast/test/utility/tap_proxy.cc b/media/cast/test/utility/tap_proxy.cc
index 7bd696bd270eb77ccef2f6c5da2dc77c482c8bb8..43125f50d2da89461d42eb38afb6cc24dd36c37b 100644
--- a/media/cast/test/utility/tap_proxy.cc
+++ b/media/cast/test/utility/tap_proxy.cc
@@ -151,16 +151,16 @@ class ByteCounter {
return packets / time_range().InSecondsF();
}
- void Increment(uint64 x) {
+ void Increment(uint64_t x) {
bytes_ += x;
packets_ ++;
}
private:
- uint64 bytes_;
- uint64 packets_;
- std::deque<uint64> byte_data_;
- std::deque<uint64> packet_data_;
+ uint64_t bytes_;
+ uint64_t packets_;
+ std::deque<uint64_t> byte_data_;
+ std::deque<uint64_t> packet_data_;
std::deque<base::TimeTicks> time_data_;
};

Powered by Google App Engine
This is Rietveld 408576698