[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
simon.fraser at apple.com
simon.fraser at apple.com
Tue Jan 5 23:47:44 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 1565d2dd2fbb6b3598336e3cc5cd0fe7178a2d77
Author: simon.fraser at apple.com <simon.fraser at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Dec 11 21:50:18 2009 +0000
2009-12-11 Simon Fraser <simon.fraser at apple.com>
Build fix for platforms where ACCELERATED_COMPOSITING is not defined.
* page/animation/KeyframeAnimation.cpp:
(WebCore::KeyframeAnimation::pauseAnimation):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52022 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 28eb831..6c871ed 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,10 @@
+2009-12-11 Simon Fraser <simon.fraser at apple.com>
+
+ Build fix for platforms where ACCELERATED_COMPOSITING is not defined.
+
+ * page/animation/KeyframeAnimation.cpp:
+ (WebCore::KeyframeAnimation::pauseAnimation):
+
2009-12-11 Adam Roben <aroben at apple.com>
Windows build fix
diff --git a/WebCore/page/animation/KeyframeAnimation.cpp b/WebCore/page/animation/KeyframeAnimation.cpp
index 227fd2b..7537bbc 100644
--- a/WebCore/page/animation/KeyframeAnimation.cpp
+++ b/WebCore/page/animation/KeyframeAnimation.cpp
@@ -217,6 +217,8 @@ void KeyframeAnimation::pauseAnimation(double timeOffset)
if (layer->isComposited())
layer->backing()->animationPaused(timeOffset, m_keyframes.animationName());
}
+#else
+ UNUSED_PARAM(timeOffset);
#endif
// Restore the original (unanimated) style
if (!paused())
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list