| Index: webrtc/video/receive_statistics_proxy_unittest.cc
 | 
| diff --git a/webrtc/video/receive_statistics_proxy_unittest.cc b/webrtc/video/receive_statistics_proxy_unittest.cc
 | 
| index af7ae684d58995a18493b5134ed99eafab733c04..84943e24886131611d0c30ca891e30a5b8f819ac 100644
 | 
| --- a/webrtc/video/receive_statistics_proxy_unittest.cc
 | 
| +++ b/webrtc/video/receive_statistics_proxy_unittest.cc
 | 
| @@ -54,7 +54,8 @@ class ReceiveStatisticsProxyTest : public ::testing::Test {
 | 
|  TEST_F(ReceiveStatisticsProxyTest, OnDecodedFrameIncreasesFramesDecoded) {
 | 
|    EXPECT_EQ(0u, statistics_proxy_->GetStats().frames_decoded);
 | 
|    for (uint32_t i = 1; i <= 3; ++i) {
 | 
| -    statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>());
 | 
| +    statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(),
 | 
| +                                      VideoContentType::UNSPECIFIED);
 | 
|      EXPECT_EQ(i, statistics_proxy_->GetStats().frames_decoded);
 | 
|    }
 | 
|  }
 | 
| @@ -62,40 +63,47 @@ TEST_F(ReceiveStatisticsProxyTest, OnDecodedFrameIncreasesFramesDecoded) {
 | 
|  TEST_F(ReceiveStatisticsProxyTest, OnDecodedFrameWithQpResetsFramesDecoded) {
 | 
|    EXPECT_EQ(0u, statistics_proxy_->GetStats().frames_decoded);
 | 
|    for (uint32_t i = 1; i <= 3; ++i) {
 | 
| -    statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>());
 | 
| +    statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(),
 | 
| +                                      VideoContentType::UNSPECIFIED);
 | 
|      EXPECT_EQ(i, statistics_proxy_->GetStats().frames_decoded);
 | 
|    }
 | 
| -  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(1u));
 | 
| +  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(1u),
 | 
| +                                    VideoContentType::UNSPECIFIED);
 | 
|    EXPECT_EQ(1u, statistics_proxy_->GetStats().frames_decoded);
 | 
|  }
 | 
|  
 | 
|  TEST_F(ReceiveStatisticsProxyTest, OnDecodedFrameIncreasesQpSum) {
 | 
|    EXPECT_EQ(rtc::Optional<uint64_t>(), statistics_proxy_->GetStats().qp_sum);
 | 
| -  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(3u));
 | 
| +  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(3u),
 | 
| +                                    VideoContentType::UNSPECIFIED);
 | 
|    EXPECT_EQ(rtc::Optional<uint64_t>(3u), statistics_proxy_->GetStats().qp_sum);
 | 
| -  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(127u));
 | 
| +  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(127u),
 | 
| +                                    VideoContentType::UNSPECIFIED);
 | 
|    EXPECT_EQ(rtc::Optional<uint64_t>(130u),
 | 
|              statistics_proxy_->GetStats().qp_sum);
 | 
|  }
 | 
|  
 | 
|  TEST_F(ReceiveStatisticsProxyTest, OnDecodedFrameWithoutQpQpSumWontExist) {
 | 
|    EXPECT_EQ(rtc::Optional<uint64_t>(), statistics_proxy_->GetStats().qp_sum);
 | 
| -  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>());
 | 
| +  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(),
 | 
| +                                    VideoContentType::UNSPECIFIED);
 | 
|    EXPECT_EQ(rtc::Optional<uint64_t>(), statistics_proxy_->GetStats().qp_sum);
 | 
|  }
 | 
|  
 | 
|  TEST_F(ReceiveStatisticsProxyTest, OnDecodedFrameWithoutQpResetsQpSum) {
 | 
|    EXPECT_EQ(rtc::Optional<uint64_t>(), statistics_proxy_->GetStats().qp_sum);
 | 
| -  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(3u));
 | 
| +  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(3u),
 | 
| +                                    VideoContentType::UNSPECIFIED);
 | 
|    EXPECT_EQ(rtc::Optional<uint64_t>(3u), statistics_proxy_->GetStats().qp_sum);
 | 
| -  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>());
 | 
| +  statistics_proxy_->OnDecodedFrame(rtc::Optional<uint8_t>(),
 | 
| +                                    VideoContentType::UNSPECIFIED);
 | 
|    EXPECT_EQ(rtc::Optional<uint64_t>(), statistics_proxy_->GetStats().qp_sum);
 | 
|  }
 | 
|  
 | 
|  TEST_F(ReceiveStatisticsProxyTest, OnRenderedFrameIncreasesFramesRendered) {
 | 
|    EXPECT_EQ(0u, statistics_proxy_->GetStats().frames_rendered);
 | 
| -  webrtc::VideoFrame frame(
 | 
| -      webrtc::I420Buffer::Create(1, 1), 0, 0, webrtc::kVideoRotation_0);
 | 
| +  webrtc::VideoFrame frame(webrtc::I420Buffer::Create(1, 1), 0, 0,
 | 
| +                           webrtc::kVideoRotation_0);
 | 
|    for (uint32_t i = 1; i <= 3; ++i) {
 | 
|      statistics_proxy_->OnRenderedFrame(frame);
 | 
|      EXPECT_EQ(i, statistics_proxy_->GetStats().frames_rendered);
 | 
| 
 |