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

Unified Diff: media/base/android/demuxer_stream_player_params.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/base/android/demuxer_stream_player_params.cc
diff --git a/media/base/android/demuxer_stream_player_params.cc b/media/base/android/demuxer_stream_player_params.cc
index 6e86a7feeb5f6352738795a6133090b3fd9bc62a..24527116da262ee9834a4b2ac582001d98348908 100644
--- a/media/base/android/demuxer_stream_player_params.cc
+++ b/media/base/android/demuxer_stream_player_params.cc
@@ -140,7 +140,7 @@ std::ostream& operator<<(std::ostream& os, const media::DemuxerConfigs& conf) {
if (!conf.audio_extra_data.empty()) {
os << " extra:{" << std::hex;
- for (uint8 byte : conf.audio_extra_data)
+ for (uint8_t byte : conf.audio_extra_data)
os << " " << std::setfill('0') << std::setw(2) << (int)byte;
os << "}" << std::dec;
}

Powered by Google App Engine
This is Rietveld 408576698