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..b0fc684866242e770b359c89e570fe01013c8a0c 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 SVGParseStatus::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 ? SVGParseStatus::NoError : SVGParseStatus::ParsingFailed; |
} |
String SVGPoint::valueAsString() const |