| Index: Source/core/svg/SVGAnimationElement.h
 | 
| diff --git a/Source/core/svg/SVGAnimationElement.h b/Source/core/svg/SVGAnimationElement.h
 | 
| index c3c021ddc8ae65cec0031981313ce54572430741..5f37fe019197d9291c216259e01f6affecd4b8ba 100644
 | 
| --- a/Source/core/svg/SVGAnimationElement.h
 | 
| +++ b/Source/core/svg/SVGAnimationElement.h
 | 
| @@ -26,7 +26,6 @@
 | 
|  #define SVGAnimationElement_h
 | 
|  
 | 
|  #include "core/platform/graphics/UnitBezier.h"
 | 
| -#include "core/svg/ElementTimeControl.h"
 | 
|  #include "core/svg/SVGAnimatedBoolean.h"
 | 
|  #include "core/svg/SVGExternalResourcesRequired.h"
 | 
|  #include "core/svg/SVGStringList.h"
 | 
| @@ -67,19 +66,17 @@ class SVGAnimatedType;
 | 
|  
 | 
|  class SVGAnimationElement : public SVGSMILElement,
 | 
|                              public SVGTests,
 | 
| -                            public SVGExternalResourcesRequired,
 | 
| -                            public ElementTimeControl {
 | 
| +                            public SVGExternalResourcesRequired {
 | 
|  public:
 | 
|      // SVGAnimationElement
 | 
|      float getStartTime() const;
 | 
|      float getCurrentTime() const;
 | 
|      float getSimpleDuration() const;
 | 
|  
 | 
| -    // ElementTimeControl
 | 
| -    virtual void beginElement();
 | 
| -    virtual void beginElementAt(float offset);
 | 
| -    virtual void endElement();
 | 
| -    virtual void endElementAt(float offset);
 | 
| +    void beginElement();
 | 
| +    void beginElementAt(float offset);
 | 
| +    void endElement();
 | 
| +    void endElementAt(float offset);
 | 
|  
 | 
|      static bool isTargetAttributeCSSProperty(SVGElement*, const QualifiedName&);
 | 
|  
 | 
| 
 |