| Index: media/base/mime_util.cc
|
| diff --git a/media/base/mime_util.cc b/media/base/mime_util.cc
|
| index ba5905d2f4a5d7346af7909099959d6b675f0568..b21b045d4d408c95610659c784dc7e0174364993 100644
|
| --- a/media/base/mime_util.cc
|
| +++ b/media/base/mime_util.cc
|
| @@ -29,10 +29,10 @@ SupportsType IsSupportedEncryptedMediaFormat(
|
| return GetMimeUtil()->IsSupportedMediaFormat(mime_type, codecs, true);
|
| }
|
|
|
| -void ParseCodecString(const std::string& codecs,
|
| - std::vector<std::string>* codecs_out,
|
| - bool strip) {
|
| - GetMimeUtil()->ParseCodecString(codecs, codecs_out, strip);
|
| +void SplitCodecsToVector(const std::string& codecs,
|
| + std::vector<std::string>* codecs_out,
|
| + bool strip) {
|
| + GetMimeUtil()->SplitCodecsToVector(codecs, codecs_out, strip);
|
| }
|
|
|
| void RemoveProprietaryMediaTypesAndCodecsForTests() {
|
|
|