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

Unified Diff: content/renderer/media/rtc_data_channel_handler.cc

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
Index: content/renderer/media/rtc_data_channel_handler.cc
diff --git a/content/renderer/media/rtc_data_channel_handler.cc b/content/renderer/media/rtc_data_channel_handler.cc
index 51fe9e64b974e8ed92c157d7503d2a2e72003ba7..9dba4334536869f574901952b594462d047dab56 100644
--- a/content/renderer/media/rtc_data_channel_handler.cc
+++ b/content/renderer/media/rtc_data_channel_handler.cc
@@ -84,7 +84,7 @@ void RtcDataChannelHandler::Observer::OnStateChange() {
}
void RtcDataChannelHandler::Observer::OnBufferedAmountChange(
- uint64 previous_amount) {
+ uint64_t previous_amount) {
// Optimization: Only post a task if the change is a decrease, because the web
// interface does not perform any action when there is an increase.
if (previous_amount > channel_->buffered_amount()) {
« no previous file with comments | « content/renderer/media/rtc_data_channel_handler.h ('k') | content/renderer/media/rtc_data_channel_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698