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

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

Issue 177803003: [SVG] Make all C-macros used in the old property implementation NOOP. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: styles 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005 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 23 matching lines...) Expand all
34 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGFETileElement) 34 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGFETileElement)
35 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGFilterPrimitiveStandardAttributes) 35 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGFilterPrimitiveStandardAttributes)
36 END_REGISTER_ANIMATED_PROPERTIES 36 END_REGISTER_ANIMATED_PROPERTIES
37 37
38 inline SVGFETileElement::SVGFETileElement(Document& document) 38 inline SVGFETileElement::SVGFETileElement(Document& document)
39 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document) 39 : SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document)
40 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create( ))) 40 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create( )))
41 { 41 {
42 ScriptWrappable::init(this); 42 ScriptWrappable::init(this);
43 addToPropertyMap(m_in1); 43 addToPropertyMap(m_in1);
44 registerAnimatedPropertiesForSVGFETileElement();
45 } 44 }
46 45
47 PassRefPtr<SVGFETileElement> SVGFETileElement::create(Document& document) 46 PassRefPtr<SVGFETileElement> SVGFETileElement::create(Document& document)
48 { 47 {
49 return adoptRef(new SVGFETileElement(document)); 48 return adoptRef(new SVGFETileElement(document));
50 } 49 }
51 50
52 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName) 51 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName)
53 { 52 {
54 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); 53 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 96
98 if (!input1) 97 if (!input1)
99 return nullptr; 98 return nullptr;
100 99
101 RefPtr<FilterEffect> effect = FETile::create(filter); 100 RefPtr<FilterEffect> effect = FETile::create(filter);
102 effect->inputEffects().append(input1); 101 effect->inputEffects().append(input1);
103 return effect.release(); 102 return effect.release();
104 } 103 }
105 104
106 } 105 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGFESpecularLightingElement.cpp ('k') | Source/core/svg/SVGFETurbulenceElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698