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

Unified Diff: net/base/mime_util_unittest.cc

Issue 389383002: Revert 277386 "Fix: Adding list of supported codecs for MP4 cont..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/2062/src/
Patch Set: Created 6 years, 5 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
« no previous file with comments | « net/base/mime_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/mime_util_unittest.cc
===================================================================
--- net/base/mime_util_unittest.cc (revision 282961)
+++ net/base/mime_util_unittest.cc (working copy)
@@ -113,13 +113,15 @@
EXPECT_TRUE(IsStrictMediaMimeType("audio/mp3"));
EXPECT_TRUE(IsStrictMediaMimeType("audio/x-mp3"));
- EXPECT_TRUE(IsStrictMediaMimeType("video/mp4"));
- EXPECT_TRUE(IsStrictMediaMimeType("video/x-m4v"));
- EXPECT_TRUE(IsStrictMediaMimeType("audio/mp4"));
- EXPECT_TRUE(IsStrictMediaMimeType("audio/x-m4a"));
+ // TODO(amogh.bihani): These will be fixed http://crbug.com/53193
+ EXPECT_FALSE(IsStrictMediaMimeType("video/mp4"));
+ EXPECT_FALSE(IsStrictMediaMimeType("video/x-m4v"));
+ EXPECT_FALSE(IsStrictMediaMimeType("audio/mp4"));
+ EXPECT_FALSE(IsStrictMediaMimeType("audio/x-m4a"));
- EXPECT_TRUE(IsStrictMediaMimeType("application/x-mpegurl"));
- EXPECT_TRUE(IsStrictMediaMimeType("application/vnd.apple.mpegurl"));
+ EXPECT_FALSE(IsStrictMediaMimeType("application/x-mpegurl"));
+ EXPECT_FALSE(IsStrictMediaMimeType("application/vnd.apple.mpegurl"));
+ // ---------------------------------------------------------------------------
EXPECT_FALSE(IsStrictMediaMimeType("video/unknown"));
EXPECT_FALSE(IsStrictMediaMimeType("audio/unknown"));
« no previous file with comments | « net/base/mime_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698