Diff
Modified: trunk/Source/WebCore/ChangeLog (90105 => 90106)
--- trunk/Source/WebCore/ChangeLog 2011-06-30 11:19:40 UTC (rev 90105)
+++ trunk/Source/WebCore/ChangeLog 2011-06-30 11:41:14 UTC (rev 90106)
@@ -1,3 +1,13 @@
+2011-06-30 Patrick Gansterer <[email protected]>
+
+ Unreviewed build fix for !ENABLE(SVG_ANIMATION) after r88663, r89187, r89220, r89431 and r89661.
+
+ * svg/SVGAnimatedAngle.h:
+ * svg/SVGAnimatedLength.h:
+ * svg/SVGAnimatedNumber.h:
+ * svg/SVGAnimatedRect.h:
+ * svg/SVGAnimatedString.h:
+
2011-06-30 Gabor Loki <[email protected]>
Reviewed by Csaba Osztrogonác.
Modified: trunk/Source/WebCore/svg/SVGAnimatedAngle.h (90105 => 90106)
--- trunk/Source/WebCore/svg/SVGAnimatedAngle.h 2011-06-30 11:19:40 UTC (rev 90105)
+++ trunk/Source/WebCore/svg/SVGAnimatedAngle.h 2011-06-30 11:41:14 UTC (rev 90106)
@@ -40,21 +40,22 @@
class SVGAnimationElement;
class SVGAnimatedAngleAnimator : public SVGAnimatedTypeAnimator {
-
+
public:
SVGAnimatedAngleAnimator(SVGAnimationElement*, SVGElement*);
virtual ~SVGAnimatedAngleAnimator() { }
-
+
virtual PassOwnPtr<SVGAnimatedType> constructFromString(const String&);
-
+
virtual void calculateFromAndToValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& toString);
virtual void calculateFromAndByValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& byString);
virtual void calculateAnimatedValue(float percentage, unsigned repeatCount,
OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, OwnPtr<SVGAnimatedType>& animatedValue);
virtual float calculateDistance(const String& fromString, const String& toString);
};
+#endif // ENABLE(SVG_ANIMATION)
+
} // namespace WebCore
-#endif // ENABLE(SVG_ANIMATION)
#endif // ENABLE(SVG)
#endif
Modified: trunk/Source/WebCore/svg/SVGAnimatedLength.h (90105 => 90106)
--- trunk/Source/WebCore/svg/SVGAnimatedLength.h 2011-06-30 11:19:40 UTC (rev 90105)
+++ trunk/Source/WebCore/svg/SVGAnimatedLength.h 2011-06-30 11:41:14 UTC (rev 90106)
@@ -40,7 +40,7 @@
class SVGAnimationElement;
class SVGAnimatedLengthAnimator : public SVGAnimatedTypeAnimator {
-
+
public:
SVGAnimatedLengthAnimator(SVGAnimationElement*, SVGElement*);
virtual ~SVGAnimatedLengthAnimator() { }
@@ -56,8 +56,9 @@
private:
SVGLengthMode m_lengthMode;
};
+#endif // ENABLE(SVG_ANIMATION)
+
} // namespace WebCore
-#endif // ENABLE(SVG_ANIMATION)
#endif // ENABLE(SVG)
#endif
Modified: trunk/Source/WebCore/svg/SVGAnimatedNumber.h (90105 => 90106)
--- trunk/Source/WebCore/svg/SVGAnimatedNumber.h 2011-06-30 11:19:40 UTC (rev 90105)
+++ trunk/Source/WebCore/svg/SVGAnimatedNumber.h 2011-06-30 11:41:14 UTC (rev 90106)
@@ -43,23 +43,24 @@
class SVGAnimationElement;
class SVGAnimatedNumberAnimator : public SVGAnimatedTypeAnimator {
-
+
public:
SVGAnimatedNumberAnimator(SVGAnimationElement*, SVGElement*);
virtual ~SVGAnimatedNumberAnimator() { }
-
+
static void calculateAnimatedNumber(SVGAnimationElement*, float percentage, unsigned repeatCount, float& animatedNumber, float fromNumber, float toNumber);
-
+
virtual PassOwnPtr<SVGAnimatedType> constructFromString(const String&);
-
+
virtual void calculateFromAndToValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& toString);
virtual void calculateFromAndByValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& byString);
virtual void calculateAnimatedValue(float percentage, unsigned repeatCount,
OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, OwnPtr<SVGAnimatedType>& animatedValue);
virtual float calculateDistance(const String& fromString, const String& toString);
};
+#endif // ENABLE(SVG_ANIMATION)
+
} // namespace WebCore
-#endif // ENABLE(SVG_ANIMATION)
#endif // ENABLE(SVG)
#endif
Modified: trunk/Source/WebCore/svg/SVGAnimatedRect.h (90105 => 90106)
--- trunk/Source/WebCore/svg/SVGAnimatedRect.h 2011-06-30 11:19:40 UTC (rev 90105)
+++ trunk/Source/WebCore/svg/SVGAnimatedRect.h 2011-06-30 11:41:14 UTC (rev 90106)
@@ -41,23 +41,24 @@
class SVGAnimationElement;
class SVGAnimatedRectAnimator : public SVGAnimatedTypeAnimator {
-
+
public:
SVGAnimatedRectAnimator(SVGAnimationElement*, SVGElement*);
virtual ~SVGAnimatedRectAnimator() { }
-
+
virtual PassOwnPtr<SVGAnimatedType> constructFromString(const String&);
-
+
virtual void calculateFromAndToValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& toString);
virtual void calculateFromAndByValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& byString);
virtual void calculateAnimatedValue(float percentage, unsigned repeatCount,
OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, OwnPtr<SVGAnimatedType>& animatedValue);
virtual float calculateDistance(const String& fromString, const String& toString);
-
+
static bool parseSVGRect(const String&, FloatRect&);
};
+#endif // ENABLE(SVG_ANIMATION)
+
} // namespace WebCore
-#endif // ENABLE(SVG_ANIMATION)
#endif // ENABLE(SVG)
#endif
Modified: trunk/Source/WebCore/svg/SVGAnimatedString.h (90105 => 90106)
--- trunk/Source/WebCore/svg/SVGAnimatedString.h 2011-06-30 11:19:40 UTC (rev 90105)
+++ trunk/Source/WebCore/svg/SVGAnimatedString.h 2011-06-30 11:41:14 UTC (rev 90106)
@@ -40,21 +40,22 @@
class SVGAnimationElement;
class SVGAnimatedStringAnimator : public SVGAnimatedTypeAnimator {
-
+
public:
SVGAnimatedStringAnimator(SVGAnimationElement*, SVGElement*);
virtual ~SVGAnimatedStringAnimator() { }
-
+
virtual PassOwnPtr<SVGAnimatedType> constructFromString(const String&);
-
+
virtual void calculateFromAndToValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& toString);
virtual void calculateFromAndByValues(OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, const String& fromString, const String& byString);
virtual void calculateAnimatedValue(float percentage, unsigned repeatCount,
OwnPtr<SVGAnimatedType>& fromValue, OwnPtr<SVGAnimatedType>& toValue, OwnPtr<SVGAnimatedType>& animatedValue);
virtual float calculateDistance(const String& fromString, const String& toString);
};
+#endif // ENABLE(SVG_ANIMATION)
+
} // namespace WebCore
-#endif // ENABLE(SVG_ANIMATION)
#endif // ENABLE(SVG)
#endif