Index: third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h |
diff --git a/third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h b/third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h |
index 3119f2bd3e6c0d1004279a7300f416b14ecc6b07..ee1af37148e7c953a691940238cacfd10a056551 100644 |
--- a/third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h |
+++ b/third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h |
@@ -76,10 +76,9 @@ class SVGPropertyTearOffBase |
static void ThrowReadOnly(ExceptionState&); |
protected: |
- SVGPropertyTearOffBase( |
- SVGElement* context_element, |
- PropertyIsAnimValType property_is_anim_val, |
- const QualifiedName& attribute_name = QualifiedName::Null()) |
+ SVGPropertyTearOffBase(SVGElement* context_element, |
+ PropertyIsAnimValType property_is_anim_val, |
+ const QualifiedName& attribute_name) |
: context_element_(context_element), |
property_is_anim_val_(property_is_anim_val), |
attribute_name_(attribute_name) {} |
@@ -116,11 +115,10 @@ class SVGPropertyTearOff : public SVGPropertyTearOffBase { |
} |
protected: |
- SVGPropertyTearOff( |
- Property* target, |
- SVGElement* context_element, |
- PropertyIsAnimValType property_is_anim_val, |
- const QualifiedName& attribute_name = QualifiedName::Null()) |
+ SVGPropertyTearOff(Property* target, |
+ SVGElement* context_element, |
+ PropertyIsAnimValType property_is_anim_val, |
+ const QualifiedName& attribute_name) |
: SVGPropertyTearOffBase(context_element, |
property_is_anim_val, |
attribute_name), |