| Index: media/cast/logging/logging_impl.cc
|
| diff --git a/media/cast/logging/logging_impl.cc b/media/cast/logging/logging_impl.cc
|
| index 3ab4b4d0b9120376fb4cb5ca3988e4a5968c1cb2..03d6c4781aecece10d9ba16e4d579a798e155afa 100644
|
| --- a/media/cast/logging/logging_impl.cc
|
| +++ b/media/cast/logging/logging_impl.cc
|
| @@ -25,13 +25,14 @@ void LoggingImpl::InsertFrameEvent(const base::TimeTicks& time_of_event,
|
| raw_.InsertFrameEvent(time_of_event, event, rtp_timestamp, frame_id);
|
| }
|
|
|
| -void LoggingImpl::InsertFrameEventWithSize(const base::TimeTicks& time_of_event,
|
| - CastLoggingEvent event,
|
| - uint32 rtp_timestamp,
|
| - uint32 frame_id, int frame_size) {
|
| +void LoggingImpl::InsertEncodedFrameEvent(const base::TimeTicks& time_of_event,
|
| + CastLoggingEvent event,
|
| + uint32 rtp_timestamp,
|
| + uint32 frame_id, int frame_size,
|
| + bool key_frame) {
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| - raw_.InsertFrameEventWithSize(time_of_event, event, rtp_timestamp, frame_id,
|
| - frame_size);
|
| + raw_.InsertEncodedFrameEvent(time_of_event, event, rtp_timestamp, frame_id,
|
| + frame_size, key_frame);
|
| }
|
|
|
| void LoggingImpl::InsertFrameEventWithDelay(
|
|
|