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

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

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 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/properties/SVGAnimatedProperty.h
diff --git a/third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h b/third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h
index c67a4cb78f9ec14a975626f069be11d54587f254..28a9a9530efb27236e8d253804f7603546f35b38 100644
--- a/third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h
+++ b/third_party/WebKit/Source/core/svg/properties/SVGAnimatedProperty.h
@@ -196,11 +196,15 @@ class SVGAnimatedProperty : public SVGAnimatedPropertyCommon<Property> {
m_baseValueUpdated = true;
DCHECK(this->attributeName() != QualifiedName::null());
+ /* DO NOT SUBMIT - Merge conflict marker */
+ /* Please spell |contextElement| (not |ContextElement|) below. */
this->contextElement()->invalidateSVGAttributes();
this->contextElement()->svgAttributeBaseValChanged(this->attributeName());
}
PrimitiveType animVal() {
+ /* DO NOT SUBMIT - Merge conflict marker */
+ /* Please spell |contextElement| (not |ContextElement|) below. */
this->contextElement()->ensureAttributeAnimValUpdated();
return this->currentValue()->value();
}
@@ -260,6 +264,8 @@ class SVGAnimatedProperty<Property, TearOffType, void>
virtual TearOffType* baseVal() {
if (!m_baseValTearOff) {
m_baseValTearOff =
+ /* DO NOT SUBMIT - Merge conflict marker */
+ /* Please spell |contextElement| (not |ContextElement|) below. */
TearOffType::create(this->baseValue(), this->contextElement(),
PropertyIsNotAnimVal, this->attributeName());
}
@@ -269,6 +275,8 @@ class SVGAnimatedProperty<Property, TearOffType, void>
TearOffType* animVal() {
if (!m_animValTearOff) {
m_animValTearOff =
+ /* DO NOT SUBMIT - Merge conflict marker */
+ /* Please spell |contextElement| (not |ContextElement|) below. */
TearOffType::create(this->currentValue(), this->contextElement(),
PropertyIsAnimVal, this->attributeName());
}

Powered by Google App Engine
This is Rietveld 408576698