Index: trunk/Source/core/page/animation/CSSPropertyAnimation.cpp |
=================================================================== |
--- trunk/Source/core/page/animation/CSSPropertyAnimation.cpp (revision 157750) |
+++ trunk/Source/core/page/animation/CSSPropertyAnimation.cpp (working copy) |
@@ -85,11 +85,6 @@ |
blendFunc(anim, from.height(), to.height(), progress)); |
} |
-static inline LengthPoint blendFunc(const AnimationBase* anim, const LengthPoint& from, const LengthPoint& to, double progress) |
-{ |
- return LengthPoint(blendFunc(anim, from.x(), to.x(), progress), blendFunc(anim, from.y(), to.y(), progress)); |
-} |
- |
static inline IntSize blendFunc(const AnimationBase* anim, const IntSize& from, const IntSize& to, double progress) |
{ |
return IntSize(blendFunc(anim, from.width(), to.width(), progress), |
@@ -1115,8 +1110,6 @@ |
gPropertyWrappers->append(new FillLayersPropertyWrapper(CSSPropertyWebkitMaskPositionY, &RenderStyle::maskLayers, &RenderStyle::accessMaskLayers)); |
gPropertyWrappers->append(new FillLayersPropertyWrapper(CSSPropertyWebkitMaskSize, &RenderStyle::maskLayers, &RenderStyle::accessMaskLayers)); |
- gPropertyWrappers->append(new PropertyWrapper<LengthPoint>(CSSPropertyObjectPosition, &RenderStyle::objectPosition, &RenderStyle::setObjectPosition)); |
- |
gPropertyWrappers->append(new PropertyWrapper<float>(CSSPropertyFontSize, |
// Must pass a specified size to setFontSize if Text Autosizing is enabled, but a computed size |
// if text zoom is enabled (if neither is enabled it's irrelevant as they're probably the same). |