Index: third_party/WebKit/Source/core/svg/SVGLengthList.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGLengthList.cpp b/third_party/WebKit/Source/core/svg/SVGLengthList.cpp |
index 433d9aeb0f6a7f0c572159590a6d53e218efa15c..27134ab72ec8f5700ec34f0969bde5351e770e25 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGLengthList.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGLengthList.cpp |
@@ -84,19 +84,19 @@ SVGParsingError SVGLengthList::parseInternal(const CharType*& ptr, const CharTyp |
RefPtrWillBeRawPtr<SVGLength> length = SVGLength::create(m_mode); |
SVGParsingError lengthParseStatus = length->setValueAsString(valueString); |
- if (lengthParseStatus != NoError) |
+ if (lengthParseStatus != SVGParseStatus::NoError) |
return lengthParseStatus; |
append(length); |
skipOptionalSVGSpacesOrDelimiter(ptr, end); |
} |
- return NoError; |
+ return SVGParseStatus::NoError; |
} |
SVGParsingError SVGLengthList::setValueAsString(const String& value) |
{ |
if (value.isEmpty()) { |
clear(); |
- return NoError; |
+ return SVGParseStatus::NoError; |
} |
SVGParsingError parseStatus; |