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

Unified Diff: net/base/data_url.cc

Issue 54233002: Make net::DataURL's MIME string check stricter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CONTENT_EXPORT Created 6 years, 9 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/data_url.cc
diff --git a/net/base/data_url.cc b/net/base/data_url.cc
index e7b46cd44ceb5bc144d29ffc99fb4489a1a02eaf..18b035df939c03973b6a106cadaf54490503557b 100644
--- a/net/base/data_url.cc
+++ b/net/base/data_url.cc
@@ -13,6 +13,7 @@
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "net/base/escape.h"
+#include "net/base/mime_util.h"
#include "url/gurl.h"
namespace net {
@@ -59,9 +60,13 @@ bool DataURL::Parse(const GURL& url, std::string* mime_type,
}
}
- // fallback to defaults if nothing specified in the URL:
- if (mime_type->empty())
+ if (mime_type->empty()) {
+ // fallback to defaults if nothing specified in the URL:
mime_type->assign("text/plain");
+ } else {
asanka 2014/03/27 18:59:52 Nit: else if
tyoshino (SeeGerritForStatus) 2014/03/31 13:02:45 Done.
+ if (!ParseMimeTypeWithoutParameter(*mime_type, NULL, NULL))
+ return false;
+ }
if (charset->empty())
charset->assign("US-ASCII");
« no previous file with comments | « content/content_tests.gypi ('k') | net/base/data_url_unittest.cc » ('j') | net/base/mime_util.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698