| Index: media/cast/logging/log_serializer.h
|
| diff --git a/media/cast/logging/log_serializer.h b/media/cast/logging/log_serializer.h
|
| index 679cce1e6b41b1dbccdf6a7b5bc0c5c7e42fb1e8..18fe50aa2b81123fea939c2018212aebd356effb 100644
|
| --- a/media/cast/logging/log_serializer.h
|
| +++ b/media/cast/logging/log_serializer.h
|
| @@ -36,7 +36,8 @@ class LogSerializer {
|
| ~LogSerializer();
|
|
|
| // Serialize |frame_events|, |packet_events|, |first_rtp_timestamp|
|
| - // returned from EncodingEventSubscriber associated with |stream_id|.
|
| + // returned from EncodingEventSubscriber. |is_audio| indicates whether the
|
| + // events are from an audio or video stream.
|
| //
|
| // Returns |true| if serialization is successful. This function
|
| // returns |false| if the serialized string will exceed |kMaxSerializedsize|.
|
| @@ -45,7 +46,7 @@ class LogSerializer {
|
| // calling |GetSerializedString()|.
|
| //
|
| // See .cc file for format specification.
|
| - bool SerializeEventsForStream(const int stream_id,
|
| + bool SerializeEventsForStream(bool is_audio,
|
| const FrameEventMap& frame_events,
|
| const PacketEventMap& packet_events,
|
| const RtpTimestamp first_rtp_timestamp);
|
|
|