| Index: Source/core/html/HTMLPlugInImageElement.cpp
|
| diff --git a/Source/core/html/HTMLPlugInImageElement.cpp b/Source/core/html/HTMLPlugInImageElement.cpp
|
| index ff2ee7c6cf6b1d3ea3e9df6955c003d6cf14789e..b1ed56dd00410e8456aca2499dace407cf11c5e3 100644
|
| --- a/Source/core/html/HTMLPlugInImageElement.cpp
|
| +++ b/Source/core/html/HTMLPlugInImageElement.cpp
|
| @@ -244,10 +244,7 @@ bool HTMLPlugInImageElement::loadPlugin(const KURL& url, const String& mimeType,
|
| {
|
| Frame* frame = document()->frame();
|
|
|
| - // Application plug-ins are plug-ins implemented by the user agent, for example Qt plug-ins,
|
| - // as opposed to third-party code such as Flash. The user agent decides whether or not they are
|
| - // permitted, rather than WebKit.
|
| - if (!frame->loader()->allowPlugins(AboutToInstantiatePlugin) && !MIMETypeRegistry::isApplicationPluginMIMEType(mimeType))
|
| + if (!frame->loader()->allowPlugins(AboutToInstantiatePlugin))
|
| return false;
|
|
|
| if (!pluginIsLoadable(url, mimeType))
|
|
|