| 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 d0553150dedcc7ef8cc1c4e7b7ae8f83d1022349..0c3aeb1a4fc0e5de0d1903990dbec442d9380916 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| @@ -34,6 +34,8 @@ std::pair<const char*, const char*> messageForStatus(SVGParseStatus status)
|
| return std::make_pair("Expected 'true' or 'false', ", ".");
|
| case SVGParseStatus::ExpectedEnumeration:
|
| return std::make_pair("Unrecognized enumerated value, ", ".");
|
| + case SVGParseStatus::ExpectedInteger:
|
| + return std::make_pair("Expected integer, ", ".");
|
| case SVGParseStatus::ExpectedLength:
|
| return std::make_pair("Expected length, ", ".");
|
| case SVGParseStatus::ExpectedMoveToCommand:
|
|
|