Title: [154754] trunk/Source/WebCore
Revision
154754
Author
[email protected]
Date
2013-08-28 10:03:19 -0700 (Wed, 28 Aug 2013)

Log Message

Resolve unused parameter warning in ScriptedAnimationController.cpp.
https://bugs.webkit.org/show_bug.cgi?id=120408

Patch by Tamas Czene <[email protected]> on 2013-08-28
Reviewed by Darin Adler.

* dom/ScriptedAnimationController.cpp:
(WebCore::ScriptedAnimationController::setThrottled):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154753 => 154754)


--- trunk/Source/WebCore/ChangeLog	2013-08-28 16:48:53 UTC (rev 154753)
+++ trunk/Source/WebCore/ChangeLog	2013-08-28 17:03:19 UTC (rev 154754)
@@ -1,3 +1,13 @@
+2013-08-28  Tamas Czene  <[email protected]>
+
+        Resolve unused parameter warning in ScriptedAnimationController.cpp.
+        https://bugs.webkit.org/show_bug.cgi?id=120408
+
+        Reviewed by Darin Adler.
+
+        * dom/ScriptedAnimationController.cpp:
+        (WebCore::ScriptedAnimationController::setThrottled):
+
 2013-08-28  Sergio Villar Senin  <[email protected]>
 
         [CSS Grid Layout] Handle 'span' positions during layout

Modified: trunk/Source/WebCore/dom/ScriptedAnimationController.cpp (154753 => 154754)


--- trunk/Source/WebCore/dom/ScriptedAnimationController.cpp	2013-08-28 16:48:53 UTC (rev 154753)
+++ trunk/Source/WebCore/dom/ScriptedAnimationController.cpp	2013-08-28 17:03:19 UTC (rev 154754)
@@ -95,6 +95,8 @@
         m_animationTimer.stop();
         scheduleAnimation();
     }
+#else
+    UNUSED_PARAM(isThrottled);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to