Index: Source/core/svg/SVGSVGElement.h |
diff --git a/Source/core/svg/SVGSVGElement.h b/Source/core/svg/SVGSVGElement.h |
index 4376f45af80cd172c7a3b17e96d12ef71b4a7c8e..395f4d96529277437fd73c8be4f5f3af64e6db70 100644 |
--- a/Source/core/svg/SVGSVGElement.h |
+++ b/Source/core/svg/SVGSVGElement.h |
@@ -96,10 +96,11 @@ public: |
float getCurrentTime() const; |
void setCurrentTime(float seconds); |
- unsigned suspendRedraw(unsigned maxWaitMilliseconds); |
- void unsuspendRedraw(unsigned suspendHandleId); |
- void unsuspendRedrawAll(); |
- void forceRedraw(); |
+ // Stubs for the deprecated 'redraw' interface. |
+ unsigned suspendRedraw(unsigned) { return 1; } |
+ void unsuspendRedraw(unsigned) { } |
+ void unsuspendRedrawAll() { } |
+ void forceRedraw() { } |
PassRefPtr<NodeList> getIntersectionList(PassRefPtr<SVGRectTearOff>, SVGElement* referenceElement) const; |
PassRefPtr<NodeList> getEnclosureList(PassRefPtr<SVGRectTearOff>, SVGElement* referenceElement) const; |