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

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

Issue 178073004: Cast: IPC from browser to renderer to send packet events from transport to cast library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « media/cast/logging/proto/proto_utils.cc ('k') | media/cast/logging/serialize_deserialize_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 faef802c415295ca4b0a58fd06b5e2ff14570630..d0d0eedd3193722f121197cbe2dbad19c54e449a 100644
--- a/media/cast/logging/proto/raw_events.proto
+++ b/media/cast/logging/proto/raw_events.proto
@@ -38,14 +38,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;
}
message AggregatedFrameEvent {
« no previous file with comments | « media/cast/logging/proto/proto_utils.cc ('k') | media/cast/logging/serialize_deserialize_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698