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

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

Issue 192133002: Use isSVG*Element() helpers more in SVG code (Part 1) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/SVGFEDiffuseLightingElement.cpp ('k') | Source/core/svg/SVGFELightElement.cpp » ('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 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005 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 * Copyright (C) 2005 Oliver Hunt <oliver@nerget.com> 4 * Copyright (C) 2005 Oliver Hunt <oliver@nerget.com>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 14 matching lines...) Expand all
25 #include "SVGNames.h" 25 #include "SVGNames.h"
26 #include "core/svg/SVGAnimatedNumber.h" 26 #include "core/svg/SVGAnimatedNumber.h"
27 #include "core/svg/SVGElement.h" 27 #include "core/svg/SVGElement.h"
28 #include "platform/graphics/filters/LightSource.h" 28 #include "platform/graphics/filters/LightSource.h"
29 29
30 namespace WebCore { 30 namespace WebCore {
31 31
32 class SVGFELightElement : public SVGElement { 32 class SVGFELightElement : public SVGElement {
33 public: 33 public:
34 virtual PassRefPtr<LightSource> lightSource() const = 0; 34 virtual PassRefPtr<LightSource> lightSource() const = 0;
35 static SVGFELightElement* findLightElement(const SVGElement*); 35 static SVGFELightElement* findLightElement(const SVGElement&);
36 static PassRefPtr<LightSource> findLightSource(const SVGElement*); 36 static PassRefPtr<LightSource> findLightSource(const SVGElement&);
37 37
38 SVGAnimatedNumber* azimuth() { return m_azimuth.get(); } 38 SVGAnimatedNumber* azimuth() { return m_azimuth.get(); }
39 const SVGAnimatedNumber* azimuth() const { return m_azimuth.get(); } 39 const SVGAnimatedNumber* azimuth() const { return m_azimuth.get(); }
40 SVGAnimatedNumber* elevation() { return m_elevation.get(); } 40 SVGAnimatedNumber* elevation() { return m_elevation.get(); }
41 const SVGAnimatedNumber* elevation() const { return m_elevation.get(); } 41 const SVGAnimatedNumber* elevation() const { return m_elevation.get(); }
42 SVGAnimatedNumber* x() { return m_x.get(); } 42 SVGAnimatedNumber* x() { return m_x.get(); }
43 const SVGAnimatedNumber* x() const { return m_x.get(); } 43 const SVGAnimatedNumber* x() const { return m_x.get(); }
44 SVGAnimatedNumber* y() { return m_y.get(); } 44 SVGAnimatedNumber* y() { return m_y.get(); }
45 const SVGAnimatedNumber* y() const { return m_y.get(); } 45 const SVGAnimatedNumber* y() const { return m_y.get(); }
46 SVGAnimatedNumber* z() { return m_z.get(); } 46 SVGAnimatedNumber* z() { return m_z.get(); }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 inline bool isSVGFELightElement(const Node& node) 82 inline bool isSVGFELightElement(const Node& node)
83 { 83 {
84 return node.hasTagName(SVGNames::feDistantLightTag) || node.hasTagName(SVGNa mes::fePointLightTag) || node.hasTagName(SVGNames::feSpotLightTag); 84 return node.hasTagName(SVGNames::feDistantLightTag) || node.hasTagName(SVGNa mes::fePointLightTag) || node.hasTagName(SVGNames::feSpotLightTag);
85 } 85 }
86 86
87 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGFELightElement); 87 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGFELightElement);
88 88
89 } // namespace WebCore 89 } // namespace WebCore
90 90
91 #endif 91 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGFEDiffuseLightingElement.cpp ('k') | Source/core/svg/SVGFELightElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698