diff options
Diffstat (limited to 'Source/WebCore/svg/SVGGlyphElement.h')
-rw-r--r-- | Source/WebCore/svg/SVGGlyphElement.h | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/Source/WebCore/svg/SVGGlyphElement.h b/Source/WebCore/svg/SVGGlyphElement.h index 7b7d38a10..24f15ceae 100644 --- a/Source/WebCore/svg/SVGGlyphElement.h +++ b/Source/WebCore/svg/SVGGlyphElement.h @@ -19,47 +19,27 @@ * Boston, MA 02110-1301, USA. */ -#ifndef SVGGlyphElement_h -#define SVGGlyphElement_h +#pragma once #if ENABLE(SVG_FONTS) + #include "SVGElement.h" -#include "SVGGlyph.h" namespace WebCore { -class SVGFontData; - class SVGGlyphElement final : public SVGElement { public: - static PassRefPtr<SVGGlyphElement> create(const QualifiedName&, Document&); - - SVGGlyph buildGlyphIdentifier() const; + static Ref<SVGGlyphElement> create(const QualifiedName&, Document&); // Helper function used by SVGFont - static void inheritUnspecifiedAttributes(SVGGlyph&, const SVGFontData*); static String querySVGFontLanguage(const SVGElement*); - // Helper function shared between SVGGlyphElement & SVGMissingGlyphElement - static SVGGlyph buildGenericGlyphIdentifier(const SVGElement*); - private: SVGGlyphElement(const QualifiedName&, Document&); - // FIXME: svgAttributeChanged missing. - virtual void parseAttribute(const QualifiedName&, const AtomicString&) override; - - virtual InsertionNotificationRequest insertedInto(ContainerNode&) override; - virtual void removedFrom(ContainerNode&) override; - - virtual bool rendererIsNeeded(const RenderStyle&) override { return false; } - - void invalidateGlyphCache(); + bool rendererIsNeeded(const RenderStyle&) final { return false; } }; -NODE_TYPE_CASTS(SVGGlyphElement) - } // namespace WebCore #endif // ENABLE(SVG_FONTS) -#endif |