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..ab341459876ea07aee0aeece7aac7cde91c42984 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 SVGStatus::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 ? SVGStatus::NoError : SVGStatus::ParsingFailed; |
} |
void SVGPointList::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement* contextElement) |