| Index: webrtc/pc/rtcstats_integrationtest.cc
|
| diff --git a/webrtc/pc/rtcstats_integrationtest.cc b/webrtc/pc/rtcstats_integrationtest.cc
|
| index 25b31f7dd743da4cec30669e906a79a7c5f8cc73..06f284a0d548015be2687276267c2bec36623ca2 100644
|
| --- a/webrtc/pc/rtcstats_integrationtest.cc
|
| +++ b/webrtc/pc/rtcstats_integrationtest.cc
|
| @@ -552,6 +552,7 @@ class RTCStatsReportVerifier {
|
| verifier.TestMemberIsNonNegative<double>(inbound_stream.jitter);
|
| }
|
| verifier.TestMemberIsNonNegative<double>(inbound_stream.fraction_lost);
|
| + verifier.TestMemberIsUndefined(inbound_stream.round_trip_time);
|
| verifier.TestMemberIsUndefined(inbound_stream.packets_discarded);
|
| verifier.TestMemberIsUndefined(inbound_stream.packets_repaired);
|
| verifier.TestMemberIsUndefined(inbound_stream.burst_packets_lost);
|
| @@ -584,8 +585,6 @@ class RTCStatsReportVerifier {
|
| verifier.TestMemberIsNonNegative<uint32_t>(outbound_stream.packets_sent);
|
| verifier.TestMemberIsNonNegative<uint64_t>(outbound_stream.bytes_sent);
|
| verifier.TestMemberIsUndefined(outbound_stream.target_bitrate);
|
| - // TODO(hbos): Defined in video but not audio case. Why? crbug.com/669877
|
| - verifier.MarkMemberTested(outbound_stream.round_trip_time, true);
|
| if (outbound_stream.media_type.is_defined() &&
|
| *outbound_stream.media_type == "video") {
|
| verifier.TestMemberIsDefined(outbound_stream.frames_encoded);
|
|
|