| Index: webrtc/pc/channelmanager_unittest.cc
 | 
| diff --git a/webrtc/pc/channelmanager_unittest.cc b/webrtc/pc/channelmanager_unittest.cc
 | 
| index 0beb940c89ad5227cd9ed377294f3bc2fa005ef2..174d064b0543b0da6fd8cd10ddf4a02910d79723 100644
 | 
| --- a/webrtc/pc/channelmanager_unittest.cc
 | 
| +++ b/webrtc/pc/channelmanager_unittest.cc
 | 
| @@ -27,8 +27,7 @@ static const AudioCodec kAudioCodecs[] = {
 | 
|  };
 | 
|  
 | 
|  static const VideoCodec kVideoCodecs[] = {
 | 
| -    VideoCodec(99, "H264", 100, 200, 300),
 | 
| -    VideoCodec(100, "VP8", 100, 200, 300), VideoCodec(96, "rtx", 100, 200, 300),
 | 
| +    VideoCodec(99, "H264"), VideoCodec(100, "VP8"), VideoCodec(96, "rtx"),
 | 
|  };
 | 
|  
 | 
|  class ChannelManagerTest : public testing::Test {
 | 
| @@ -171,7 +170,7 @@ TEST_F(ChannelManagerTest, NoTransportChannelTest) {
 | 
|  
 | 
|  TEST_F(ChannelManagerTest, SetVideoRtxEnabled) {
 | 
|    std::vector<VideoCodec> codecs;
 | 
| -  const VideoCodec rtx_codec(96, "rtx", 0, 0, 0);
 | 
| +  const VideoCodec rtx_codec(96, "rtx");
 | 
|  
 | 
|    // By default RTX is disabled.
 | 
|    cm_->GetSupportedVideoCodecs(&codecs);
 | 
| 
 |