summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGMissingGlyphElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGMissingGlyphElement.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGMissingGlyphElement.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGMissingGlyphElement.h b/chromium/third_party/WebKit/Source/core/svg/SVGMissingGlyphElement.h
index 9057582fab5..56016924da1 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGMissingGlyphElement.h
+++ b/chromium/third_party/WebKit/Source/core/svg/SVGMissingGlyphElement.h
@@ -21,23 +21,21 @@
#define SVGMissingGlyphElement_h
#if ENABLE(SVG_FONTS)
-#include "SVGNames.h"
+#include "core/SVGNames.h"
#include "core/svg/SVGElement.h"
namespace WebCore {
class SVGMissingGlyphElement FINAL : public SVGElement {
public:
- static PassRefPtr<SVGMissingGlyphElement> create(Document&);
+ DECLARE_NODE_FACTORY(SVGMissingGlyphElement);
private:
explicit SVGMissingGlyphElement(Document&);
- virtual bool rendererIsNeeded(const RenderStyle&) { return false; }
+ virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
};
-DEFINE_NODE_TYPE_CASTS(SVGMissingGlyphElement, hasTagName(SVGNames::missing_glyphTag));
-
} // namespace WebCore
#endif // ENABLE(SVG_FONTS)