| Index: third_party/WebKit/Source/core/svg/SVGNumberList.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGNumberList.cpp b/third_party/WebKit/Source/core/svg/SVGNumberList.cpp
|
| index 03f74dfda61f4a8472d5f59b41f3e2fde4336a2d..2316df2ae6dbcadf797af1c4aafa6190c9e481d0 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGNumberList.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGNumberList.cpp
|
| @@ -73,7 +73,7 @@ SVGParsingError SVGNumberList::setValueAsString(const String& value)
|
| {
|
| if (value.isEmpty()) {
|
| clear();
|
| - return NoError;
|
| + return SVGStatus::NoError;
|
| }
|
|
|
| bool valid = false;
|
| @@ -90,9 +90,9 @@ SVGParsingError SVGNumberList::setValueAsString(const String& value)
|
| if (!valid) {
|
| // No call to |clear()| here. SVG policy is to use valid items before error.
|
| // Spec: http://www.w3.org/TR/SVG/single-page.html#implnote-ErrorProcessing
|
| - return ParsingAttributeFailedError;
|
| + return SVGStatus::ParsingFailed;
|
| }
|
| - return NoError;
|
| + return SVGStatus::NoError;
|
| }
|
|
|
| void SVGNumberList::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement* contextElement)
|
|
|