| 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..371bbc7b68f89aced61f0b84a98bdc734872c847 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 = SVGStatus::ParsingFailed;
|
| m_pathValue = CSSPathValue::create(byteStream.release());
|
| return parseStatus;
|
| }
|
|
|