WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
NEW
119953
Tries to fetch plugins information once and again when plugin process fails
https://bugs.webkit.org/show_bug.cgi?id=119953
Summary
Tries to fetch plugins information once and again when plugin process fails
Claudio Saavedra
Reported
2013-08-17 10:09:37 PDT
This is problematic when GetPlugins fails somehow: void WebPlatformStrategies::populatePluginCache() { if (m_pluginCacheIsPopulated) return; ASSERT(m_cachedPlugins.isEmpty()); // FIXME: Should we do something in case of error here? if (!WebProcess::shared().parentProcessConnection()->sendSync(Messages::WebProcessProxy::GetPlugins(m_shouldRefreshPlugins), Messages::WebProcessProxy::GetPlugins::Reply(m_cachedPlugins, m_cachedApplicationPlugins), 0)) return; m_shouldRefreshPlugins = false; m_pluginCacheIsPopulated = true; } If this fails we shouldn't be checking once an again.
Attachments
Add attachment
proposed patch, testcase, etc.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug