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

Unified Diff: media/cast/rtcp/rtcp_defines.h

Issue 270493003: Cast: Deduplicate event types in cast library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 7 months 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/rtcp/rtcp.cc ('k') | media/cast/rtcp/rtcp_defines.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/rtcp/rtcp_defines.h
diff --git a/media/cast/rtcp/rtcp_defines.h b/media/cast/rtcp/rtcp_defines.h
index 5cc4a59a07a62cd6967599bcdea926ac5a1e85e0..f121742cae57e771a92ef244427f4b9d33770755 100644
--- a/media/cast/rtcp/rtcp_defines.h
+++ b/media/cast/rtcp/rtcp_defines.h
@@ -111,7 +111,7 @@ inline bool operator==(RtcpReceiverReferenceTimeReport lhs,
// Struct used by raw event subscribers as an intermediate format before
// sending off to the other side via RTCP.
-// (i.e., WindowedRtcpEventRtp{Sender,Receiver}Subscriber)
+// (i.e., {Sender,Receiver}RtcpEventSubscriber)
struct RtcpEvent {
RtcpEvent();
~RtcpEvent();
@@ -121,11 +121,10 @@ struct RtcpEvent {
// Time of event logged.
base::TimeTicks timestamp;
- // Render/playout delay. Only set for kAudioPlayoutDelay and
- // kVideoRenderDelay events.
+ // Render/playout delay. Only set for FRAME_PLAYOUT events.
base::TimeDelta delay_delta;
- // Only set for packet events. (kAudioPacketReceived, kVideoPacketReceived)
+ // Only set for packet events.
uint16 packet_id;
};
« no previous file with comments | « media/cast/rtcp/rtcp.cc ('k') | media/cast/rtcp/rtcp_defines.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698