Title: [171343] trunk/Source/WebCore
Revision
171343
Author
clo...@igalia.com
Date
2014-07-22 08:02:12 -0700 (Tue, 22 Jul 2014)

Log Message

[GTK] Rollout r170529 due to ~10% performance regression on the
perf test Animation/balls.
https://bugs.webkit.org/show_bug.cgi?id=134972

Reviewed by Martin Robinson.

Reverted changeset:
"Increase priority on SharedTimer source."
https://trac.webkit.org/r170529

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (171342 => 171343)


--- trunk/Source/WebCore/ChangeLog	2014-07-22 13:47:49 UTC (rev 171342)
+++ trunk/Source/WebCore/ChangeLog	2014-07-22 15:02:12 UTC (rev 171343)
@@ -1,3 +1,15 @@
+2014-07-22  Carlos Alberto Lopez Perez  <clo...@igalia.com>
+
+        [GTK] Rollout r170529 due to ~10% performance regression on the
+        perf test Animation/balls.
+        https://bugs.webkit.org/show_bug.cgi?id=134972
+
+        Reviewed by Martin Robinson.
+
+        Reverted changeset:
+        "Increase priority on SharedTimer source."
+        https://trac.webkit.org/r170529
+
 2014-07-18  Dirk Schulze  <k...@webkit.org>
 
         Turn width/height to presentation attributes

Modified: trunk/Source/WebCore/platform/gtk/SharedTimerGtk.cpp (171342 => 171343)


--- trunk/Source/WebCore/platform/gtk/SharedTimerGtk.cpp	2014-07-22 13:47:49 UTC (rev 171342)
+++ trunk/Source/WebCore/platform/gtk/SharedTimerGtk.cpp	2014-07-22 15:02:12 UTC (rev 171343)
@@ -48,7 +48,7 @@
     ASSERT(sharedTimerFiredFunction);
 
     gSharedTimer.scheduleAfterDelay("[WebKit] sharedTimerTimeoutCallback", std::function<void()>(sharedTimerFiredFunction),
-        std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::duration<double>(interval)), G_PRIORITY_DEFAULT);
+        std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::duration<double>(interval)), GDK_PRIORITY_REDRAW);
 }
 
 void stopSharedTimer()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to