| Index: media/filters/chunk_demuxer.h | 
| diff --git a/media/filters/chunk_demuxer.h b/media/filters/chunk_demuxer.h | 
| index f19a3d4f557fc33026962019f186122ac06a27f3..cd01b1ee9091eeb47079c053fbb8c04ea9a3b6e0 100644 | 
| --- a/media/filters/chunk_demuxer.h | 
| +++ b/media/filters/chunk_demuxer.h | 
| @@ -191,16 +191,13 @@ class MEDIA_EXPORT ChunkDemuxer : public Demuxer { | 
|  | 
| // Registers a new |id| to use for AppendData() calls. |type| indicates | 
| // the MIME type for the data that we intend to append for this ID. | 
| -  // |use_legacy_frame_processor| determines which of LegacyFrameProcessor or | 
| -  // FrameProcessor to use to process parsed frames from AppendData() calls. | 
| // kOk is returned if the demuxer has enough resources to support another ID | 
| //    and supports the format indicated by |type|. | 
| // kNotSupported is returned if |type| is not a supported format. | 
| // kReachedIdLimit is returned if the demuxer cannot handle another ID right | 
| //    now. | 
| Status AddId(const std::string& id, const std::string& type, | 
| -               std::vector<std::string>& codecs, | 
| -               const bool use_legacy_frame_processor); | 
| +               std::vector<std::string>& codecs); | 
|  | 
| // Removed an ID & associated resources that were previously added with | 
| // AddId(). | 
|  |