Title: [159248] trunk/Source/WebKit2
- Revision
- 159248
- Author
- [email protected]
- Date
- 2013-11-13 15:18:08 -0800 (Wed, 13 Nov 2013)
Log Message
Plug-in processes hang around for 10 sec after Safari quits
https://bugs.webkit.org/show_bug.cgi?id=124314
<rdar://problem/15460613>
Reviewed by Simon Fraser.
Call stopRunLoop instead of instead of RunLoop::stop().
* PluginProcess/PluginProcess.cpp:
(WebKit::PluginProcess::didClose):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (159247 => 159248)
--- trunk/Source/WebKit2/ChangeLog 2013-11-13 23:11:59 UTC (rev 159247)
+++ trunk/Source/WebKit2/ChangeLog 2013-11-13 23:18:08 UTC (rev 159248)
@@ -1,3 +1,16 @@
+2013-11-13 Anders Carlsson <[email protected]>
+
+ Plug-in processes hang around for 10 sec after Safari quits
+ https://bugs.webkit.org/show_bug.cgi?id=124314
+ <rdar://problem/15460613>
+
+ Reviewed by Simon Fraser.
+
+ Call stopRunLoop instead of instead of RunLoop::stop().
+
+ * PluginProcess/PluginProcess.cpp:
+ (WebKit::PluginProcess::didClose):
+
2013-11-13 Csaba Osztrogonác <[email protected]>
URTBF after r159234.
Modified: trunk/Source/WebKit2/PluginProcess/PluginProcess.cpp (159247 => 159248)
--- trunk/Source/WebKit2/PluginProcess/PluginProcess.cpp 2013-11-13 23:11:59 UTC (rev 159247)
+++ trunk/Source/WebKit2/PluginProcess/PluginProcess.cpp 2013-11-13 23:18:08 UTC (rev 159248)
@@ -149,7 +149,7 @@
{
// The UI process has crashed, just go ahead and quit.
// FIXME: If the plug-in is spinning in the main loop, we'll never get this message.
- RunLoop::current()->stop();
+ stopRunLoop();
}
void PluginProcess::didReceiveInvalidMessage(CoreIPC::Connection*, CoreIPC::StringReference, CoreIPC::StringReference)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes