Index: media/filters/stream_parser_factory.h |
diff --git a/media/filters/stream_parser_factory.h b/media/filters/stream_parser_factory.h |
index d62115e31f4028f8bc17b6261b7d9af1f5ab21be..38fb660e3b7592542f46be9a324a8efb179454bd 100644 |
--- a/media/filters/stream_parser_factory.h |
+++ b/media/filters/stream_parser_factory.h |
@@ -28,16 +28,12 @@ class MEDIA_EXPORT StreamParserFactory { |
// something wrong with |type| or the codec IDs in |codecs|. |
// Returns a new StreamParser object if |type| and all codecs listed in |
// |codecs| are supported. |
- // |has_audio| is true if an audio codec was specified. |
- // |has_video| is true if a video codec was specified. |
// Returns NULL otherwise. The values of |has_audio| and |has_video| are |
chcunningham
2016/09/16 00:05:06
Nit: remove mentions of has_audio/video here
servolk
2016/09/16 00:34:31
Done.
|
// undefined. |
static std::unique_ptr<StreamParser> Create( |
const std::string& type, |
const std::vector<std::string>& codecs, |
- const scoped_refptr<MediaLog>& media_log, |
- bool* has_audio, |
- bool* has_video); |
+ const scoped_refptr<MediaLog>& media_log); |
}; |
} // namespace media |