| Index: third_party/WebKit/Source/core/svg/SVGTextPathElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTextPathElement.cpp b/third_party/WebKit/Source/core/svg/SVGTextPathElement.cpp
|
| index 12b7eaa018a6a1d4fbc1e52948c992485fdc1ba0..eae5a2b6c12119c0f9d3fd5fad191734bc9cc3ef 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTextPathElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTextPathElement.cpp
|
| @@ -30,8 +30,8 @@ const SVGEnumerationStringEntries&
|
| getStaticStringEntries<SVGTextPathMethodType>() {
|
| DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ());
|
| if (entries.isEmpty()) {
|
| - entries.append(std::make_pair(SVGTextPathMethodAlign, "align"));
|
| - entries.append(std::make_pair(SVGTextPathMethodStretch, "stretch"));
|
| + entries.push_back(std::make_pair(SVGTextPathMethodAlign, "align"));
|
| + entries.push_back(std::make_pair(SVGTextPathMethodStretch, "stretch"));
|
| }
|
| return entries;
|
| }
|
| @@ -41,8 +41,8 @@ const SVGEnumerationStringEntries&
|
| getStaticStringEntries<SVGTextPathSpacingType>() {
|
| DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ());
|
| if (entries.isEmpty()) {
|
| - entries.append(std::make_pair(SVGTextPathSpacingAuto, "auto"));
|
| - entries.append(std::make_pair(SVGTextPathSpacingExact, "exact"));
|
| + entries.push_back(std::make_pair(SVGTextPathSpacingAuto, "auto"));
|
| + entries.push_back(std::make_pair(SVGTextPathSpacingExact, "exact"));
|
| }
|
| return entries;
|
| }
|
|
|