Index: third_party/WebKit/Source/core/svg/SVGPointList.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGPointList.cpp b/third_party/WebKit/Source/core/svg/SVGPointList.cpp |
index 117969e37d2f0cf160b167134c0fe688b623c31f..e7f67b8bf7635bf6707258b47e149823a4e67c58 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGPointList.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGPointList.cpp |
@@ -92,7 +92,7 @@ SVGParsingError SVGPointList::setValueAsString(const String& value) |
{ |
if (value.isEmpty()) { |
clear(); |
- return NoError; |
+ return SVGParseStatus::NoError; |
} |
bool valid = false; |
@@ -105,7 +105,7 @@ SVGParsingError SVGPointList::setValueAsString(const String& value) |
const UChar* end = ptr + value.length(); |
valid = parse(ptr, end); |
} |
- return valid ? NoError : ParsingAttributeFailedError; |
+ return valid ? SVGParseStatus::NoError : SVGParseStatus::ParsingFailed; |
} |
void SVGPointList::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement* contextElement) |