| Index: chrome/browser/ui/cocoa/drag_util.mm
|
| diff --git a/chrome/browser/ui/cocoa/drag_util.mm b/chrome/browser/ui/cocoa/drag_util.mm
|
| index 515591eb4a87d8a67ab77946e237ec92f942dd4d..dd2b34fd95c44d6970445255ead56cd86227077e 100644
|
| --- a/chrome/browser/ui/cocoa/drag_util.mm
|
| +++ b/chrome/browser/ui/cocoa/drag_util.mm
|
| @@ -10,6 +10,7 @@
|
| #include "base/mac/scoped_nsobject.h"
|
| #include "base/strings/sys_string_conversions.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| +#include "content/common/mime_util.h"
|
| #include "content/public/browser/plugin_service.h"
|
| #include "content/public/common/webplugininfo.h"
|
| #include "ipc/ipc_message.h"
|
| @@ -39,7 +40,7 @@ BOOL IsSupportedFileURL(Profile* profile, const GURL& url) {
|
| // This logic mirrors |BufferedResourceHandler::ShouldDownload()|.
|
| // TODO(asvitkine): Refactor this out to a common location instead of
|
| // duplicating code.
|
| - if (net::IsSupportedMimeType(mime_type))
|
| + if (content::IsSupportedMimeType(mime_type))
|
| return YES;
|
|
|
| // Check whether there is a plugin that supports the mime type. (e.g. PDF)
|
|
|