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