summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/svg/SVGFontFaceSrcElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/svg/SVGFontFaceSrcElement.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/svg/SVGFontFaceSrcElement.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/core/svg/SVGFontFaceSrcElement.h b/chromium/third_party/WebKit/Source/core/svg/SVGFontFaceSrcElement.h
index f7ef1af6f6b..5dd85481cc9 100644
--- a/chromium/third_party/WebKit/Source/core/svg/SVGFontFaceSrcElement.h
+++ b/chromium/third_party/WebKit/Source/core/svg/SVGFontFaceSrcElement.h
@@ -21,6 +21,7 @@
#define SVGFontFaceSrcElement_h
#if ENABLE(SVG_FONTS)
+#include "core/SVGNames.h"
#include "core/svg/SVGElement.h"
namespace WebCore {
@@ -29,14 +30,14 @@ class CSSValueList;
class SVGFontFaceSrcElement FINAL : public SVGElement {
public:
- static PassRefPtr<SVGFontFaceSrcElement> create(Document&);
+ DECLARE_NODE_FACTORY(SVGFontFaceSrcElement);
- PassRefPtr<CSSValueList> srcValue() const;
+ PassRefPtrWillBeRawPtr<CSSValueList> srcValue() const;
private:
explicit SVGFontFaceSrcElement(Document&);
- virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
+ virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0) OVERRIDE;
virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
};