Title: [147138] trunk/Source/WebKit2
Revision
147138
Author
beid...@apple.com
Date
2013-03-28 12:00:54 -0700 (Thu, 28 Mar 2013)

Log Message

Reduce PluginProcess lifetime.
<rdar://problem/12465479> and https://bugs.webkit.org/show_bug.cgi?id=113523

Reviewed by Sam Weinig.

Lower the minimum process lifetime from 30 minutes to 2 minutes.
Lower the "shutdown after last plugin goes away" period from 10 minutes to 1 minute.

* UIProcess/Plugins/PluginProcessProxy.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (147137 => 147138)


--- trunk/Source/WebKit2/ChangeLog	2013-03-28 18:58:02 UTC (rev 147137)
+++ trunk/Source/WebKit2/ChangeLog	2013-03-28 19:00:54 UTC (rev 147138)
@@ -1,3 +1,15 @@
+2013-03-28  Brady Eidson  <beid...@apple.com>
+
+        Reduce PluginProcess lifetime.
+        <rdar://problem/12465479> and https://bugs.webkit.org/show_bug.cgi?id=113523
+
+        Reviewed by Sam Weinig.
+
+        Lower the minimum process lifetime from 30 minutes to 2 minutes.
+        Lower the "shutdown after last plugin goes away" period from 10 minutes to 1 minute.
+
+        * UIProcess/Plugins/PluginProcessProxy.cpp:
+
 2013-03-28  Zan Dobersek  <zdober...@igalia.com>
 
         [GTK] Build GTK-specific, non-layer-violating source code into WebCore-independent libPlatformGtk.la

Modified: trunk/Source/WebKit2/UIProcess/Plugins/PluginProcessProxy.cpp (147137 => 147138)


--- trunk/Source/WebKit2/UIProcess/Plugins/PluginProcessProxy.cpp	2013-03-28 18:58:02 UTC (rev 147137)
+++ trunk/Source/WebKit2/UIProcess/Plugins/PluginProcessProxy.cpp	2013-03-28 19:00:54 UTC (rev 147138)
@@ -47,8 +47,8 @@
 
 namespace WebKit {
 
-static const double minimumLifetime = 30 * 60;
-static const double shutdownTimeout = 10 * 60;
+static const double minimumLifetime = 2 * 60;
+static const double shutdownTimeout = 1 * 60;
 
 PassRefPtr<PluginProcessProxy> PluginProcessProxy::create(PluginProcessManager* PluginProcessManager, const PluginModuleInfo& pluginInfo, PluginProcess::Type processType)
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to