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

Unified Diff: net/base/mime_util_unittest.cc

Issue 2510523002: Assign "application/vnd.android.package-archive" type to APK files on ChromeOS. (Closed)
Patch Set: Test Created 4 years, 1 month 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_extension_chromeos.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
diff --git a/net/base/mime_util_unittest.cc b/net/base/mime_util_unittest.cc
index 0787d8cda505c2f5acb44fb86779f96a0547b987..ed67331726ffee0447255f4489d35351a52883eb 100644
--- a/net/base/mime_util_unittest.cc
+++ b/net/base/mime_util_unittest.cc
@@ -28,9 +28,10 @@ TEST(MimeUtilTest, ExtensionTest) {
{FILE_PATH_LITERAL("pjp"), "image/jpeg", true},
{FILE_PATH_LITERAL("pjpeg"), "image/jpeg", true},
#if defined(OS_CHROMEOS)
- // These two are test cases for testing platform mime types on Chrome OS.
+ // These three are test cases for testing platform mime types on Chrome OS.
{FILE_PATH_LITERAL("epub"), "application/epub+zip", true},
{FILE_PATH_LITERAL("ics"), "text/calendar", true},
+ {FILE_PATH_LITERAL("apk"), "application/vnd.android.package-archive", true},
asanka 2016/11/16 14:51:45 Might as well add .zip here as well.
kinaba 2016/11/17 00:16:07 Done.
#endif
#if defined(OS_ANDROID)
{FILE_PATH_LITERAL("m3u8"), "application/x-mpegurl", true},
« no previous file with comments | « net/base/mime_extension_chromeos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698