| Index: third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGParsingError.cpp b/third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| index 0c3aeb1a4fc0e5de0d1903990dbec442d9380916..c6e9fc4eaebac2f0e9264330aaeff88392574466 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| @@ -32,6 +32,8 @@ std::pair<const char*, const char*> messageForStatus(SVGParseStatus status)
|
| return std::make_pair("Expected arc flag ('0' or '1'), ", ".");
|
| case SVGParseStatus::ExpectedBoolean:
|
| return std::make_pair("Expected 'true' or 'false', ", ".");
|
| + case SVGParseStatus::ExpectedEndOfArguments:
|
| + return std::make_pair("Expected ')', ", ".");
|
| case SVGParseStatus::ExpectedEnumeration:
|
| return std::make_pair("Unrecognized enumerated value, ", ".");
|
| case SVGParseStatus::ExpectedInteger:
|
|
|