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

Unified Diff: third_party/WebKit/Source/core/svg/SVGFETileElement.cpp

Issue 2436793002: Simplify SVGAnimated* initialization (Closed)
Patch Set: Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGFETileElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGFETileElement.cpp b/third_party/WebKit/Source/core/svg/SVGFETileElement.cpp
index 8a9ecd9112c1660a630a638c4dba37446595454c..86581b909fe4a607a33912d0f6db27e26590c4c0 100644
--- a/third_party/WebKit/Source/core/svg/SVGFETileElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGFETileElement.cpp
@@ -28,9 +28,7 @@ namespace blink {
inline SVGFETileElement::SVGFETileElement(Document& document)
: SVGFilterPrimitiveStandardAttributes(SVGNames::feTileTag, document),
- m_in1(SVGAnimatedString::create(this,
- SVGNames::inAttr,
- SVGString::create())) {
+ m_in1(SVGAnimatedString::create(this, SVGNames::inAttr)) {
addToPropertyMap(m_in1);
}

Powered by Google App Engine
This is Rietveld 408576698