| Index: content/child/blink_platform_impl.cc
|
| diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
|
| index ffea5f9f7bde53e696c9a04c8c913286d074d3a8..b2939e372f636d5811626a792c24dfc0b6fd5a0f 100644
|
| --- a/content/child/blink_platform_impl.cc
|
| +++ b/content/child/blink_platform_impl.cc
|
| @@ -45,9 +45,9 @@
|
| #include "content/child/websocket_bridge.h"
|
| #include "content/child/webthread_impl.h"
|
| #include "content/child/worker_task_runner.h"
|
| +#include "content/common/mime_util.h"
|
| #include "content/public/common/content_client.h"
|
| #include "net/base/data_url.h"
|
| -#include "net/base/mime_util.h"
|
| #include "net/base/net_errors.h"
|
| #include "net/base/net_util.h"
|
| #include "third_party/WebKit/public/platform/WebConvertableToTraceFormat.h"
|
| @@ -477,7 +477,7 @@ WebData BlinkPlatformImpl::parseDataURL(const WebURL& url,
|
| WebString& charset_out) {
|
| std::string mime_type, char_set, data;
|
| if (net::DataURL::Parse(url, &mime_type, &char_set, &data)
|
| - && net::IsSupportedMimeType(mime_type)) {
|
| + && content::IsSupportedMimeType(mime_type)) {
|
| mimetype_out = WebString::fromUTF8(mime_type);
|
| charset_out = WebString::fromUTF8(char_set);
|
| return data;
|
|
|