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

Unified Diff: third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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/animation/SVGAngleInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp b/third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp
index ebac3de8ace776e259e3765b03c764f6dcd2ab0e..cbcc3201487389380b6f74ced2137c0de86313aa 100644
--- a/third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/SVGAngleInterpolationType.cpp
@@ -26,7 +26,7 @@ SVGPropertyBase* SVGAngleInterpolationType::appliedSVGValue(const InterpolableVa
{
double doubleValue = toInterpolableNumber(interpolableValue).value();
SVGAngle* result = SVGAngle::create();
- result->newValueSpecifiedUnits(SVGAngle::SVG_ANGLETYPE_DEG, doubleValue);
+ result->newValueSpecifiedUnits(SVGAngle::kSvgAngletypeDeg, doubleValue);
return result;
}

Powered by Google App Engine
This is Rietveld 408576698