Index: third_party/WebKit/Source/core/svg/SVGPathElement.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGPathElement.cpp b/third_party/WebKit/Source/core/svg/SVGPathElement.cpp |
index fb1f808cb01ee5362a7ac594d89bdee6e909736d..a1dcb3983f499b5a411fa7910aff1e8e1d62449c 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGPathElement.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGPathElement.cpp |
@@ -38,8 +38,8 @@ public: |
SVGParsingError setBaseValueAsString(const String& value) override |
{ |
SVGParsingError parseStatus = SVGAnimatedNumber::setBaseValueAsString(value); |
- if (parseStatus == NoError && baseValue()->value() < 0) |
- parseStatus = NegativeValueForbiddenError; |
+ if (parseStatus == SVGStatus::NoError && baseValue()->value() < 0) |
+ parseStatus = SVGStatus::NegativeValue; |
return parseStatus; |
} |