Index: media/cast/test/simulator.cc |
diff --git a/media/cast/test/simulator.cc b/media/cast/test/simulator.cc |
index 135d44bb45c85c9193e08dd213b19c94dc8494f3..27812c333cbe3a287381d383205557c468d6e708 100644 |
--- a/media/cast/test/simulator.cc |
+++ b/media/cast/test/simulator.cc |
@@ -104,22 +104,11 @@ |
frame_events.begin(); |
it != frame_events.end(); |
++it) { |
- if (it->type == FRAME_PLAYOUT) { |
- env->Logging()->InsertFrameEventWithDelay( |
- it->timestamp, |
- it->type, |
- it->media_type, |
- it->rtp_timestamp, |
- it->frame_id, |
- it->delay_delta); |
- } else { |
- env->Logging()->InsertFrameEvent( |
- it->timestamp, |
- it->type, |
- it->media_type, |
- it->rtp_timestamp, |
- it->frame_id); |
- } |
+ env->Logging()->InsertFrameEvent(it->timestamp, |
+ it->type, |
+ it->media_type, |
+ it->rtp_timestamp, |
+ it->frame_id); |
} |
} |