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

Unified Diff: media/cast/logging/proto/raw_events.proto

Issue 196433002: Cast: Log sender side packet events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 9 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
Index: media/cast/logging/proto/raw_events.proto
diff --git a/media/cast/logging/proto/raw_events.proto b/media/cast/logging/proto/raw_events.proto
index 7ea334d29cd667eb35a771e784a07dea2dadf664..4664c6224b734f6e694eb0837f69227043b967fd 100644
--- a/media/cast/logging/proto/raw_events.proto
+++ b/media/cast/logging/proto/raw_events.proto
@@ -40,14 +40,17 @@ enum EventType {
VIDEO_FRAME_DECODED = 17;
VIDEO_RENDER_DELAY = 18;
// Send-side packet events.
- PACKET_SENT_TO_PACER = 19;
- PACKET_SENT_TO_NETWORK = 20;
- PACKET_RETRANSMITTED = 21;
+ AUDIO_PACKET_SENT_TO_PACER = 19;
+ VIDEO_PACKET_SENT_TO_PACER = 20;
+ AUDIO_PACKET_SENT_TO_NETWORK = 21;
+ VIDEO_PACKET_SENT_TO_NETWORK = 22;
+ AUDIO_PACKET_RETRANSMITTED = 23;
+ VIDEO_PACKET_RETRANSMITTED = 24;
// Receiver-side packet events.
- AUDIO_PACKET_RECEIVED = 22;
- VIDEO_PACKET_RECEIVED = 23;
- DUPLICATE_AUDIO_PACKET_RECEIVED = 24;
- DUPLICATE_VIDEO_PACKET_RECEIVED = 25;
+ AUDIO_PACKET_RECEIVED = 25;
+ VIDEO_PACKET_RECEIVED = 26;
+ DUPLICATE_AUDIO_PACKET_RECEIVED = 27;
+ DUPLICATE_VIDEO_PACKET_RECEIVED = 28;
}
// Each log will contain one |LogMetadata|.

Powered by Google App Engine
This is Rietveld 408576698