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

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

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. 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/SVGFEMorphologyElement.cpp ('k') | Source/core/svg/SVGFEPointLightElement.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, 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 16 matching lines...) Expand all
27 #include "core/svg/graphics/filters/SVGFilterBuilder.h" 27 #include "core/svg/graphics/filters/SVGFilterBuilder.h"
28 28
29 namespace blink { 29 namespace blink {
30 30
31 inline SVGFEOffsetElement::SVGFEOffsetElement(Document& document) 31 inline SVGFEOffsetElement::SVGFEOffsetElement(Document& document)
32 : SVGFilterPrimitiveStandardAttributes(SVGNames::feOffsetTag, document) 32 : SVGFilterPrimitiveStandardAttributes(SVGNames::feOffsetTag, document)
33 , m_dx(SVGAnimatedNumber::create(this, SVGNames::dxAttr, SVGNumber::create() )) 33 , m_dx(SVGAnimatedNumber::create(this, SVGNames::dxAttr, SVGNumber::create() ))
34 , m_dy(SVGAnimatedNumber::create(this, SVGNames::dyAttr, SVGNumber::create() )) 34 , m_dy(SVGAnimatedNumber::create(this, SVGNames::dyAttr, SVGNumber::create() ))
35 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create( ))) 35 , m_in1(SVGAnimatedString::create(this, SVGNames::inAttr, SVGString::create( )))
36 { 36 {
37 ScriptWrappable::init(this);
38
39 addToPropertyMap(m_dx); 37 addToPropertyMap(m_dx);
40 addToPropertyMap(m_dy); 38 addToPropertyMap(m_dy);
41 addToPropertyMap(m_in1); 39 addToPropertyMap(m_in1);
42 } 40 }
43 41
44 DEFINE_NODE_FACTORY(SVGFEOffsetElement) 42 DEFINE_NODE_FACTORY(SVGFEOffsetElement)
45 43
46 bool SVGFEOffsetElement::isSupportedAttribute(const QualifiedName& attrName) 44 bool SVGFEOffsetElement::isSupportedAttribute(const QualifiedName& attrName)
47 { 45 {
48 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); 46 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->curr entValue()->value())); 95 FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->curr entValue()->value()));
98 96
99 if (!input1) 97 if (!input1)
100 return nullptr; 98 return nullptr;
101 99
102 RefPtr<FilterEffect> effect = FEOffset::create(filter, m_dx->currentValue()- >value(), m_dy->currentValue()->value()); 100 RefPtr<FilterEffect> effect = FEOffset::create(filter, m_dx->currentValue()- >value(), m_dy->currentValue()->value());
103 effect->inputEffects().append(input1); 101 effect->inputEffects().append(input1);
104 return effect.release(); 102 return effect.release();
105 } 103 }
106 104
107 } 105 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/svg/SVGFEMorphologyElement.cpp ('k') | Source/core/svg/SVGFEPointLightElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698