Title: [137575] trunk/Source/WebKit2
Revision
137575
Author
[email protected]
Date
2012-12-13 01:29:45 -0800 (Thu, 13 Dec 2012)

Log Message

plugin snapshotting accepts bad snapshot after 5 seconds
https://bugs.webkit.org/show_bug.cgi?id=104886
<rdar://problem/12838753>

Reviewed by Maciej Stachowiak.

* WebProcess/Plugins/PluginView.cpp: Increase to 60 tries, equating to a little over 60 seconds total.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (137574 => 137575)


--- trunk/Source/WebKit2/ChangeLog	2012-12-13 09:26:46 UTC (rev 137574)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-13 09:29:45 UTC (rev 137575)
@@ -1,3 +1,13 @@
+2012-12-13  Jon Lee  <[email protected]>
+
+        plugin snapshotting accepts bad snapshot after 5 seconds
+        https://bugs.webkit.org/show_bug.cgi?id=104886
+        <rdar://problem/12838753>
+
+        Reviewed by Maciej Stachowiak.
+
+        * WebProcess/Plugins/PluginView.cpp: Increase to 60 tries, equating to a little over 60 seconds total.
+
 2012-12-12  Gyuyoung Kim  <[email protected]>
 
         NetworkInfoController needs to support destructor

Modified: trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp (137574 => 137575)


--- trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp	2012-12-13 09:26:46 UTC (rev 137574)
+++ trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp	2012-12-13 09:29:45 UTC (rev 137575)
@@ -71,7 +71,7 @@
 
 // This simulated mouse click delay in HTMLPlugInImageElement.cpp should generally be the same or shorter than this delay.
 static const double pluginSnapshotTimerDelay = 1.1;
-static const unsigned maximumSnapshotRetries = 5;
+static const unsigned maximumSnapshotRetries = 60;
 
 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