Title: [163154] trunk/Source/WebCore
- Revision
- 163154
- Author
- [email protected]
- Date
- 2014-01-30 20:51:21 -0800 (Thu, 30 Jan 2014)
Log Message
Speculative build fix.
* page/animation/CSSPropertyAnimation.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (163153 => 163154)
--- trunk/Source/WebCore/ChangeLog 2014-01-31 04:04:04 UTC (rev 163153)
+++ trunk/Source/WebCore/ChangeLog 2014-01-31 04:51:21 UTC (rev 163154)
@@ -1,3 +1,9 @@
+2014-01-30 Jessie Berlin <[email protected]>
+
+ Speculative build fix.
+
+ * page/animation/CSSPropertyAnimation.cpp:
+
2014-01-30 Zalan Bujtas <[email protected]>
Subpixel rendering: Change BorderData's width from unsigned to float to enable subpixel border painting.
Modified: trunk/Source/WebCore/page/animation/CSSPropertyAnimation.cpp (163153 => 163154)
--- trunk/Source/WebCore/page/animation/CSSPropertyAnimation.cpp 2014-01-31 04:04:04 UTC (rev 163153)
+++ trunk/Source/WebCore/page/animation/CSSPropertyAnimation.cpp 2014-01-31 04:51:21 UTC (rev 163154)
@@ -62,11 +62,6 @@
return blend(from, to, progress);
}
-static inline unsigned blendFunc(const AnimationBase*, unsigned from, unsigned to, double progress)
-{
- return blend(from, to, progress);
-}
-
static inline double blendFunc(const AnimationBase*, double from, double to, double progress)
{
return blend(from, to, progress);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes