Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(413)

Side by Side Diff: Source/core/svg/SVGLinearGradientElement.h

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGLineElement.h ('k') | Source/core/svg/SVGMPathElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 12 matching lines...) Expand all
23 23
24 #include "core/SVGNames.h" 24 #include "core/SVGNames.h"
25 #include "core/svg/SVGAnimatedLength.h" 25 #include "core/svg/SVGAnimatedLength.h"
26 #include "core/svg/SVGGradientElement.h" 26 #include "core/svg/SVGGradientElement.h"
27 27
28 namespace blink { 28 namespace blink {
29 29
30 struct LinearGradientAttributes; 30 struct LinearGradientAttributes;
31 31
32 class SVGLinearGradientElement FINAL : public SVGGradientElement { 32 class SVGLinearGradientElement FINAL : public SVGGradientElement {
33 DEFINE_WRAPPERTYPEINFO();
33 public: 34 public:
34 DECLARE_NODE_FACTORY(SVGLinearGradientElement); 35 DECLARE_NODE_FACTORY(SVGLinearGradientElement);
35 36
36 bool collectGradientAttributes(LinearGradientAttributes&); 37 bool collectGradientAttributes(LinearGradientAttributes&);
37 38
38 SVGAnimatedLength* x1() const { return m_x1.get(); } 39 SVGAnimatedLength* x1() const { return m_x1.get(); }
39 SVGAnimatedLength* y1() const { return m_y1.get(); } 40 SVGAnimatedLength* y1() const { return m_y1.get(); }
40 SVGAnimatedLength* x2() const { return m_x2.get(); } 41 SVGAnimatedLength* x2() const { return m_x2.get(); }
41 SVGAnimatedLength* y2() const { return m_y2.get(); } 42 SVGAnimatedLength* y2() const { return m_y2.get(); }
42 43
43 private: 44 private:
44 explicit SVGLinearGradientElement(Document&); 45 explicit SVGLinearGradientElement(Document&);
45 46
46 bool isSupportedAttribute(const QualifiedName&); 47 bool isSupportedAttribute(const QualifiedName&);
47 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 48 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
48 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; 49 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
49 50
50 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE; 51 virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
51 52
52 virtual bool selfHasRelativeLengths() const OVERRIDE; 53 virtual bool selfHasRelativeLengths() const OVERRIDE;
53 54
54 RefPtr<SVGAnimatedLength> m_x1; 55 RefPtr<SVGAnimatedLength> m_x1;
55 RefPtr<SVGAnimatedLength> m_y1; 56 RefPtr<SVGAnimatedLength> m_y1;
56 RefPtr<SVGAnimatedLength> m_x2; 57 RefPtr<SVGAnimatedLength> m_x2;
57 RefPtr<SVGAnimatedLength> m_y2; 58 RefPtr<SVGAnimatedLength> m_y2;
58 }; 59 };
59 60
60 } // namespace blink 61 } // namespace blink
61 62
62 #endif 63 #endif // SVGLinearGradientElement_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGLineElement.h ('k') | Source/core/svg/SVGMPathElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698