| Index: media/filters/chunk_demuxer.cc | 
| diff --git a/media/filters/chunk_demuxer.cc b/media/filters/chunk_demuxer.cc | 
| index 3b9d7b95ddc65d3b69aa9f9d6bbe7a9417515877..b83199caad504b213f4e10a39c05a2430e630180 100644 | 
| --- a/media/filters/chunk_demuxer.cc | 
| +++ b/media/filters/chunk_demuxer.cc | 
| @@ -561,8 +561,7 @@ bool SourceState::OnNewConfigs( | 
| return false; | 
| } | 
|  | 
| -      if (!frame_processor_->AddTrack(FrameProcessorBase::kAudioTrackId, | 
| -                                      audio_)) { | 
| +      if (!frame_processor_->AddTrack(FrameProcessor::kAudioTrackId, audio_)) { | 
| DVLOG(1) << "Failed to add audio track to frame processor."; | 
| return false; | 
| } | 
| @@ -581,8 +580,7 @@ bool SourceState::OnNewConfigs( | 
| return false; | 
| } | 
|  | 
| -      if (!frame_processor_->AddTrack(FrameProcessorBase::kVideoTrackId, | 
| -                                      video_)) { | 
| +      if (!frame_processor_->AddTrack(FrameProcessor::kVideoTrackId, video_)) { | 
| DVLOG(1) << "Failed to add video track to frame processor."; | 
| return false; | 
| } | 
|  |