| Index: Source/core/svg/SVGTextContentElement.h
|
| diff --git a/Source/core/svg/SVGTextContentElement.h b/Source/core/svg/SVGTextContentElement.h
|
| index c58445e5283f88e9e055c4ec3c1c6968cce2886d..6b1d0fa6b4dae3565ea4b09fbb6fd9c864df7d36 100644
|
| --- a/Source/core/svg/SVGTextContentElement.h
|
| +++ b/Source/core/svg/SVGTextContentElement.h
|
| @@ -25,8 +25,7 @@
|
| #include "core/svg/SVGAnimatedEnumeration.h"
|
| #include "core/svg/SVGAnimatedLength.h"
|
| #include "core/svg/SVGExternalResourcesRequired.h"
|
| -#include "core/svg/SVGStyledElement.h"
|
| -#include "core/svg/SVGTests.h"
|
| +#include "core/svg/SVGGraphicsElement.h"
|
|
|
| namespace WebCore {
|
|
|
| @@ -65,8 +64,7 @@ struct SVGPropertyTraits<SVGLengthAdjustType> {
|
| }
|
| };
|
|
|
| -class SVGTextContentElement : public SVGStyledElement,
|
| - public SVGTests,
|
| +class SVGTextContentElement : public SVGGraphicsElement,
|
| public SVGExternalResourcesRequired {
|
| public:
|
| // Forward declare enumerations in the W3C naming scheme, for IDL generation.
|
| @@ -120,11 +118,6 @@ private:
|
| DECLARE_ANIMATED_ENUMERATION(LengthAdjust, lengthAdjust, SVGLengthAdjustType)
|
| DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesRequired)
|
| END_DECLARE_ANIMATED_PROPERTIES
|
| -
|
| - // SVGTests
|
| - virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFeatures(this); }
|
| - virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequiredExtensions(this); }
|
| - virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLanguage(this); }
|
| };
|
|
|
| inline SVGTextContentElement* toSVGTextContentElement(SVGElement* element)
|
|
|