Index: third_party/WebKit/Source/core/svg/SVGPoint.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGPoint.cpp b/third_party/WebKit/Source/core/svg/SVGPoint.cpp |
index 8f0c89420fce9504fb29c8355a758ab686768594..5b0458a6e89199171f176ab6cebfbdbc14c0bac2 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGPoint.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGPoint.cpp |
@@ -84,7 +84,7 @@ SVGParsingError SVGPoint::setValueAsString(const String& string) |
{ |
if (string.isEmpty()) { |
m_value = FloatPoint(0.0f, 0.0f); |
- return NoError; |
+ return SVGStatus::NoError; |
} |
bool valid; |
@@ -97,7 +97,7 @@ SVGParsingError SVGPoint::setValueAsString(const String& string) |
const UChar* end = ptr + string.length(); |
valid = parse(ptr, end); |
} |
- return valid ? NoError : ParsingAttributeFailedError; |
+ return valid ? SVGStatus::NoError : SVGStatus::ParsingFailed; |
} |
String SVGPoint::valueAsString() const |