REGRESSION (48533): Full-frame plugins stopped working (download instead of loading the plugin)
Created attachment 190575 [details] Patch
Comment on attachment 190575 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=190575&action=review > Source/WebKit2/WebProcess/WebPage/WebPage.cpp:3794 > + if (PluginData* pluginData = m_page->pluginData()) { > + if (pluginData->supportsMimeType(MIMEType) && m_page->settings()->arePluginsEnabled()) > + return true; > + } I think you want to check if plug-ins are enabled before calling pluginData, since that can be a sync call out to the web process.
(In reply to comment #2) > (From update of attachment 190575 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=190575&action=review > > > Source/WebKit2/WebProcess/WebPage/WebPage.cpp:3794 > > + if (PluginData* pluginData = m_page->pluginData()) { > > + if (pluginData->supportsMimeType(MIMEType) && m_page->settings()->arePluginsEnabled()) > > + return true; > > + } > > I think you want to check if plug-ins are enabled before calling pluginData, since that can be a sync call out to the web process. This should be covered by the line: if (!mainFrame()->loader()->subframeLoader()->allowPlugins(NotAboutToInstantiatePlugin)) In Page::pluginData(), which calls settings->arePluginsEnabled(), but allows the client to override the setting. Thanks!
Committed r144228: <http://trac.webkit.org/changeset/144228>