Index: third_party/WebKit/Source/core/svg/SVGPath.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGPath.cpp b/third_party/WebKit/Source/core/svg/SVGPath.cpp |
index c6b00bacb48e99af9962d8da84d2069d058c6881..b44fdf9ff1340b5eb13286730711e3d08fd31ce5 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGPath.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGPath.cpp |
@@ -95,10 +95,10 @@ PassRefPtrWillBeRawPtr<SVGPath> SVGPath::clone() const |
SVGParsingError SVGPath::setValueAsString(const String& string) |
{ |
- SVGParsingError parseStatus = NoError; |
+ SVGParsingError parseStatus; |
RefPtr<SVGPathByteStream> byteStream = SVGPathByteStream::create(); |
if (!buildByteStreamFromString(string, *byteStream)) |
- parseStatus = ParsingAttributeFailedError; |
+ parseStatus = SVGParseStatus::ParsingFailed; |
m_pathValue = CSSPathValue::create(byteStream.release()); |
return parseStatus; |
} |