summaryrefslogtreecommitdiff
path: root/Source/WebCore/svg/SVGGlyphElement.h
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
commit1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c (patch)
tree46dcd36c86e7fbc6e5df36deb463b33e9967a6f7 /Source/WebCore/svg/SVGGlyphElement.h
parent32761a6cee1d0dee366b885b7b9c777e67885688 (diff)
downloadWebKitGtk-tarball-master.tar.gz
Diffstat (limited to 'Source/WebCore/svg/SVGGlyphElement.h')
-rw-r--r--Source/WebCore/svg/SVGGlyphElement.h28
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