| 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..689c2c0648d4a346480ce9360028cbdbf1153443 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 = SVGParseStatus::ParsingFailed;
|
| x = y = 0;
|
| }
|
|
|
|
|