| Index: content/child/web_url_loader_impl.cc
|
| diff --git a/content/child/web_url_loader_impl.cc b/content/child/web_url_loader_impl.cc
|
| index a1a5beb4b281d6f4a625d33b26f497db68b30b81..6a259e330162ec9a2dc1b12abd0a3a9d30c6e044 100644
|
| --- a/content/child/web_url_loader_impl.cc
|
| +++ b/content/child/web_url_loader_impl.cc
|
| @@ -15,6 +15,7 @@
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/time/time.h"
|
| +#include "components/mime_util/mime_util.h"
|
| #include "content/child/child_thread_impl.h"
|
| #include "content/child/ftp_directory_listing_response_delegate.h"
|
| #include "content/child/multipart_response_delegate.h"
|
| @@ -803,7 +804,7 @@ bool WebURLLoaderImpl::Context::CanHandleDataURLRequestLocally() const {
|
|
|
| std::string mime_type, unused_charset;
|
| if (net::DataURL::Parse(request_.url(), &mime_type, &unused_charset, NULL) &&
|
| - net::IsSupportedMimeType(mime_type))
|
| + mime_util::IsSupportedMimeType(mime_type))
|
| return true;
|
|
|
| return false;
|
|
|