Index: media/filters/chunk_demuxer.h |
diff --git a/media/filters/chunk_demuxer.h b/media/filters/chunk_demuxer.h |
index 807839370bc4de79ea2a66688d38e1adaa82fedb..1b117b92294c29503f8954fac3fe23c203e96fb5 100644 |
--- a/media/filters/chunk_demuxer.h |
+++ b/media/filters/chunk_demuxer.h |
@@ -192,16 +192,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(). |