Title: [134511] trunk/Source/WebKit2
Revision
134511
Author
[email protected]
Date
2012-11-13 17:10:35 -0800 (Tue, 13 Nov 2012)

Log Message

Reduce snapshot waiting time
https://bugs.webkit.org/show_bug.cgi?id=102147
<rdar://problem/12695539>

Reviewed by Brian Weinstein.

* WebProcess/Plugins/PluginView.cpp: Reduce to 1 second. Improves impressions of responsiveness.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (134510 => 134511)


--- trunk/Source/WebKit2/ChangeLog	2012-11-14 01:08:46 UTC (rev 134510)
+++ trunk/Source/WebKit2/ChangeLog	2012-11-14 01:10:35 UTC (rev 134511)
@@ -1,3 +1,13 @@
+2012-11-13  Jon Lee  <[email protected]>
+
+        Reduce snapshot waiting time
+        https://bugs.webkit.org/show_bug.cgi?id=102147
+        <rdar://problem/12695539>
+
+        Reviewed by Brian Weinstein.
+
+        * WebProcess/Plugins/PluginView.cpp: Reduce to 1 second. Improves impressions of responsiveness.
+
 2012-11-13  Anders Carlsson  <[email protected]>
 
         Factor the code to enter accelerated compositing given a layer out into a separate method

Modified: trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp (134510 => 134511)


--- trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp	2012-11-14 01:08:46 UTC (rev 134510)
+++ trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp	2012-11-14 01:10:35 UTC (rev 134511)
@@ -68,7 +68,7 @@
 
 namespace WebKit {
 
-static const double pluginSnapshotTimerDelay = 3;
+static const double pluginSnapshotTimerDelay = 1;
 
 class PluginView::URLRequest : public RefCounted<URLRequest> {
 public:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to