From 1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 27 Jun 2017 06:07:23 +0000 Subject: webkitgtk-2.16.5 --- Source/WebCore/svg/SVGGlyphElement.h | 28 ++++------------------------ 1 file changed, 4 insertions(+), 24 deletions(-) (limited to 'Source/WebCore/svg/SVGGlyphElement.h') 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 create(const QualifiedName&, Document&); - - SVGGlyph buildGlyphIdentifier() const; + static Ref 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 -- cgit v1.2.1