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

Side by Side Diff: Source/core/svg/SVGStopElement.cpp

Issue 327633004: Apply DEFINE/DECLARE_NODE_FACTORY(T) macro to element factories with single Document& argument. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/SVGStopElement.h ('k') | Source/core/svg/SVGSwitchElement.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, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 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,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #include "config.h" 21 #include "config.h"
22 22
23 #include "core/svg/SVGStopElement.h" 23 #include "core/svg/SVGStopElement.h"
24 24
25 #include "core/rendering/svg/RenderSVGGradientStop.h" 25 #include "core/rendering/svg/RenderSVGGradientStop.h"
26 #include "core/rendering/svg/RenderSVGResource.h" 26 #include "core/rendering/svg/RenderSVGResource.h"
27 27
28 namespace WebCore { 28 namespace WebCore {
29 29
30 SVGStopElement::SVGStopElement(Document& document) 30 inline SVGStopElement::SVGStopElement(Document& document)
31 : SVGElement(SVGNames::stopTag, document) 31 : SVGElement(SVGNames::stopTag, document)
32 , m_offset(SVGAnimatedNumber::create(this, SVGNames::offsetAttr, SVGNumberAc ceptPercentage::create())) 32 , m_offset(SVGAnimatedNumber::create(this, SVGNames::offsetAttr, SVGNumberAc ceptPercentage::create()))
33 { 33 {
34 ScriptWrappable::init(this); 34 ScriptWrappable::init(this);
35 35
36 addToPropertyMap(m_offset); 36 addToPropertyMap(m_offset);
37 } 37 }
38 38
39 DEFINE_NODE_FACTORY(SVGStopElement)
40
39 bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName) 41 bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName)
40 { 42 {
41 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); 43 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
42 if (supportedAttributes.isEmpty()) 44 if (supportedAttributes.isEmpty())
43 supportedAttributes.add(SVGNames::offsetAttr); 45 supportedAttributes.add(SVGNames::offsetAttr);
44 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); 46 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
45 } 47 }
46 48
47 void SVGStopElement::parseAttribute(const QualifiedName& name, const AtomicStrin g& value) 49 void SVGStopElement::parseAttribute(const QualifiedName& name, const AtomicStrin g& value)
48 { 50 {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 // which the renderer or style is null. This entire class is scheduled for r emoval (Bug WK 86941) 100 // which the renderer or style is null. This entire class is scheduled for r emoval (Bug WK 86941)
99 // and we will tolerate this null check until then. 101 // and we will tolerate this null check until then.
100 if (!style || !style->svgStyle()) 102 if (!style || !style->svgStyle())
101 return Color(Color::transparent); // Transparent black. 103 return Color(Color::transparent); // Transparent black.
102 104
103 const SVGRenderStyle* svgStyle = style->svgStyle(); 105 const SVGRenderStyle* svgStyle = style->svgStyle();
104 return svgStyle->stopColor().combineWithAlpha(svgStyle->stopOpacity()); 106 return svgStyle->stopColor().combineWithAlpha(svgStyle->stopOpacity());
105 } 107 }
106 108
107 } 109 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGStopElement.h ('k') | Source/core/svg/SVGSwitchElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698