Title: [186126] trunk/Source/WebKit2
Revision
186126
Author
[email protected]
Date
2015-06-30 12:48:35 -0700 (Tue, 30 Jun 2015)

Log Message

Disable Spintracer when getting the list of plug-ins
https://bugs.webkit.org/show_bug.cgi?id=146467
rdar://problem/21616640

Reviewed by Tim Horton.

* WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
(WebKit::WebPlatformStrategies::populatePluginCache):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (186125 => 186126)


--- trunk/Source/WebKit2/ChangeLog	2015-06-30 19:12:45 UTC (rev 186125)
+++ trunk/Source/WebKit2/ChangeLog	2015-06-30 19:48:35 UTC (rev 186126)
@@ -1,5 +1,16 @@
 2015-06-30  Anders Carlsson  <[email protected]>
 
+        Disable Spintracer when getting the list of plug-ins
+        https://bugs.webkit.org/show_bug.cgi?id=146467
+        rdar://problem/21616640
+
+        Reviewed by Tim Horton.
+
+        * WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
+        (WebKit::WebPlatformStrategies::populatePluginCache):
+
+2015-06-30  Anders Carlsson  <[email protected]>
+
         Java Plugin cannot launch JavaUpdater.app after renaming
         https://bugs.webkit.org/show_bug.cgi?id=146464
         rdar://problem/19747153

Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp (186125 => 186126)


--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp	2015-06-30 19:12:45 UTC (rev 186125)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp	2015-06-30 19:48:35 UTC (rev 186126)
@@ -365,6 +365,8 @@
 void WebPlatformStrategies::populatePluginCache(const WebCore::Page& page)
 {
     if (!m_pluginCacheIsPopulated) {
+        HangDetectionDisabler hangDetectionDisabler;
+
         if (!WebProcess::singleton().parentProcessConnection()->sendSync(Messages::WebProcessProxy::GetPlugins(m_shouldRefreshPlugins), Messages::WebProcessProxy::GetPlugins::Reply(m_cachedPlugins, m_cachedApplicationPlugins), 0))
             return;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to