| Index: webrtc/video/report_block_stats_unittest.cc
|
| diff --git a/webrtc/video/report_block_stats_unittest.cc b/webrtc/video/report_block_stats_unittest.cc
|
| index d9863a712f71a2af37ad6daf390a8996d9418783..d8bd7be49b2e28de901e14001dcd0c2c06c838db 100644
|
| --- a/webrtc/video/report_block_stats_unittest.cc
|
| +++ b/webrtc/video/report_block_stats_unittest.cc
|
| @@ -57,9 +57,9 @@ class ReportBlockStatsTest : public ::testing::Test {
|
| RtcpStatistics RtcpReportBlockToRtcpStatistics(
|
| const RTCPReportBlock& stats) {
|
| RtcpStatistics block;
|
| - block.cumulative_lost = stats.cumulativeLost;
|
| + block.packets_lost = stats.cumulativeLost;
|
| block.fraction_lost = stats.fractionLost;
|
| - block.extended_max_sequence_number = stats.extendedHighSeqNum;
|
| + block.extended_highest_sequence_number = stats.extendedHighSeqNum;
|
| block.jitter = stats.jitter;
|
| return block;
|
| }
|
|
|