Index: chrome/renderer/media/cast_session_delegate.cc |
diff --git a/chrome/renderer/media/cast_session_delegate.cc b/chrome/renderer/media/cast_session_delegate.cc |
index f1dfa836a8cd1f6b4fe709e775ba5c7388df2c74..2e42c7b31be37cf82f3f4eae98f7a6ef3d72a700 100644 |
--- a/chrome/renderer/media/cast_session_delegate.cc |
+++ b/chrome/renderer/media/cast_session_delegate.cc |
@@ -238,21 +238,10 @@ |
frame_events.begin(); |
it != frame_events.end(); |
++it) { |
- if (it->type == media::cast::FRAME_PLAYOUT) { |
- cast_environment_->Logging()->InsertFrameEventWithDelay( |
- it->timestamp, |
- it->type, |
- it->media_type, |
- it->rtp_timestamp, |
- it->frame_id, |
- it->delay_delta); |
- } else { |
- cast_environment_->Logging()->InsertFrameEvent( |
- it->timestamp, |
- it->type, |
- it->media_type, |
- it->rtp_timestamp, |
- it->frame_id); |
- } |
- } |
-} |
+ cast_environment_->Logging()->InsertFrameEvent(it->timestamp, |
+ it->type, |
+ it->media_type, |
+ it->rtp_timestamp, |
+ it->frame_id); |
+ } |
+} |