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

Unified Diff: third_party/WebKit/Source/core/svg/properties/SVGPropertyTearOff.h

Issue 2912663002: Clean up creation of "detached" SVG* data type objects (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGTransformTearOff.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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),
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGTransformTearOff.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698