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

Unified Diff: Source/core/svg/SVGAnimatedNumberOptionalNumber.h

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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: Source/core/svg/SVGAnimatedNumberOptionalNumber.h
diff --git a/Source/core/svg/SVGAnimatedNumberOptionalNumber.h b/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
index 00fba241dda084c6958006d94219dfc7141e2c24..0c819380ba2ed6408ff3824c845def7bed0f2ac2 100644
--- a/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
+++ b/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
@@ -49,9 +49,9 @@ public:
return adoptRefWillBeNoop(new SVGAnimatedNumberOptionalNumber(contextElement, attributeName, initialFirstValue, initialSecondValue));
}
- virtual void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
- virtual bool needsSynchronizeAttribute() override;
- virtual void animationEnded() override;
+ void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
+ bool needsSynchronizeAttribute() override;
+ void animationEnded() override;
SVGAnimatedNumber* firstNumber() { return m_firstNumber.get(); }
SVGAnimatedNumber* secondNumber() { return m_secondNumber.get(); }

Powered by Google App Engine
This is Rietveld 408576698