Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: net/base/mime_util.cc

Issue 228823003: Adding check for MIME types that do not take codecs parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing comments Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/mime_util.cc
diff --git a/net/base/mime_util.cc b/net/base/mime_util.cc
index 4679dcc02e06e94a52641e6f388088eec5f9f313..4bcff95c3c44fd56d080b7cf81aa8b54868a1670 100644
--- a/net/base/mime_util.cc
+++ b/net/base/mime_util.cc
@@ -438,7 +438,10 @@ static const MediaFormatStrict format_codec_mappings[] = {
{ "audio/x-wav", "1" },
{ "video/ogg", "opus,theora,vorbis" },
{ "audio/ogg", "opus,vorbis" },
- { "application/ogg", "opus,theora,vorbis" }
+ { "application/ogg", "opus,theora,vorbis" },
+ { "audio/mpeg", "" },
+ { "audio/mp3", "" },
+ { "audio/x-mp3", "" }
};
MimeUtil::MimeUtil() {

Powered by Google App Engine
This is Rietveld 408576698