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

Unified Diff: media/cast/logging/logging_defines.cc

Issue 1515433002: Replace uses of raw uint32's with a type-checked RtpTimeTicks data type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Speculative workaround fix for win8_chromium_ng compile error. 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 | « media/cast/logging/logging_defines.h ('k') | media/cast/logging/receiver_time_offset_estimator_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/logging/logging_defines.cc
diff --git a/media/cast/logging/logging_defines.cc b/media/cast/logging/logging_defines.cc
index e240b2f5062016c3c6596adc14b3084af06cbbc3..c3c872ae0578f844d4eac151dab6e999d92be7e4 100644
--- a/media/cast/logging/logging_defines.cc
+++ b/media/cast/logging/logging_defines.cc
@@ -33,15 +33,20 @@ const char* CastLoggingToString(CastLoggingEvent event) {
}
FrameEvent::FrameEvent()
- : rtp_timestamp(0u), frame_id(kFrameIdUnknown), width(0), height(0),
- size(0u), type(UNKNOWN), media_type(UNKNOWN_EVENT), key_frame(false),
- target_bitrate(0), encoder_cpu_utilization(-1.0),
+ : frame_id(kFrameIdUnknown),
+ width(0),
+ height(0),
+ size(0u),
+ type(UNKNOWN),
+ media_type(UNKNOWN_EVENT),
+ key_frame(false),
+ target_bitrate(0),
+ encoder_cpu_utilization(-1.0),
idealized_bitrate_utilization(-1.0) {}
FrameEvent::~FrameEvent() {}
PacketEvent::PacketEvent()
- : rtp_timestamp(0),
- frame_id(kFrameIdUnknown),
+ : frame_id(kFrameIdUnknown),
max_packet_id(0),
packet_id(0),
size(0),
« no previous file with comments | « media/cast/logging/logging_defines.h ('k') | media/cast/logging/receiver_time_offset_estimator_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698