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

Side by Side Diff: Source/core/svg/SVGGElement.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/SVGGElement.h ('k') | Source/core/svg/SVGGlyphElement.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 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 11 matching lines...) Expand all
22 22
23 #include "core/svg/SVGGElement.h" 23 #include "core/svg/SVGGElement.h"
24 24
25 #include "SVGNames.h" 25 #include "SVGNames.h"
26 #include "core/rendering/svg/RenderSVGHiddenContainer.h" 26 #include "core/rendering/svg/RenderSVGHiddenContainer.h"
27 #include "core/rendering/svg/RenderSVGResource.h" 27 #include "core/rendering/svg/RenderSVGResource.h"
28 #include "core/rendering/svg/RenderSVGTransformableContainer.h" 28 #include "core/rendering/svg/RenderSVGTransformableContainer.h"
29 29
30 namespace WebCore { 30 namespace WebCore {
31 31
32 SVGGElement::SVGGElement(Document& document, ConstructionType constructionType) 32 inline SVGGElement::SVGGElement(Document& document, ConstructionType constructio nType)
33 : SVGGraphicsElement(SVGNames::gTag, document, constructionType) 33 : SVGGraphicsElement(SVGNames::gTag, document, constructionType)
34 { 34 {
35 ScriptWrappable::init(this); 35 ScriptWrappable::init(this);
36 } 36 }
37 37
38 DEFINE_NODE_FACTORY(SVGGElement)
39
38 bool SVGGElement::isSupportedAttribute(const QualifiedName& attrName) 40 bool SVGGElement::isSupportedAttribute(const QualifiedName& attrName)
39 { 41 {
40 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); 42 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
41 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); 43 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
42 } 44 }
43 45
44 void SVGGElement::parseAttribute(const QualifiedName& name, const AtomicString& value) 46 void SVGGElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
45 { 47 {
46 if (!isSupportedAttribute(name)) { 48 if (!isSupportedAttribute(name)) {
47 SVGGraphicsElement::parseAttribute(name, value); 49 SVGGraphicsElement::parseAttribute(name, value);
(...skipping 29 matching lines...) Expand all
77 } 79 }
78 80
79 bool SVGGElement::rendererIsNeeded(const RenderStyle&) 81 bool SVGGElement::rendererIsNeeded(const RenderStyle&)
80 { 82 {
81 // Unlike SVGElement::rendererIsNeeded(), we still create renderers, even if 83 // Unlike SVGElement::rendererIsNeeded(), we still create renderers, even if
82 // display is set to 'none' - which is special to SVG <g> container elements . 84 // display is set to 'none' - which is special to SVG <g> container elements .
83 return parentOrShadowHostElement() && parentOrShadowHostElement()->isSVGElem ent(); 85 return parentOrShadowHostElement() && parentOrShadowHostElement()->isSVGElem ent();
84 } 86 }
85 87
86 } 88 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGGElement.h ('k') | Source/core/svg/SVGGlyphElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698