Index: third_party/WebKit/Source/core/svg/SVGIntegerOptionalInteger.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGIntegerOptionalInteger.cpp b/third_party/WebKit/Source/core/svg/SVGIntegerOptionalInteger.cpp |
index b064168d72a4b5e2afdc0a79b1cd35c27b872d55..9f19e9a220a6f8ae01c68a7a55280e76e206b1f5 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGIntegerOptionalInteger.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGIntegerOptionalInteger.cpp |
@@ -79,9 +79,9 @@ String SVGIntegerOptionalInteger::valueAsString() const |
SVGParsingError SVGIntegerOptionalInteger::setValueAsString(const String& value) |
{ |
float x, y; |
- SVGParsingError parseStatus = NoError; |
+ SVGParsingError parseStatus; |
if (!parseNumberOptionalNumber(value, x, y)) { |
- parseStatus = ParsingAttributeFailedError; |
+ parseStatus = SVGStatus::ParsingFailed; |
x = y = 0; |
} |