| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp
|
| index ec99d0f8f44b3cdff9d0d0813a84bd2428a1b5d5..e6cee541d9077db25e78785bf9401d68c4117e26 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp
|
| @@ -59,7 +59,7 @@ void V0CustomElement::addEmbedderCustomElementName(const AtomicString& name) {
|
| AtomicString lower = name.lower();
|
| if (isValidName(lower, EmbedderNames))
|
| return;
|
| - embedderCustomElementNames().append(lower);
|
| + embedderCustomElementNames().push_back(lower);
|
| }
|
|
|
| static inline bool isValidNCName(const AtomicString& name) {
|
| @@ -89,7 +89,7 @@ bool V0CustomElement::isValidName(const AtomicString& name,
|
| DEFINE_STATIC_LOCAL(Vector<AtomicString>, reservedNames, ());
|
| if (reservedNames.isEmpty()) {
|
| // FIXME(crbug.com/426605): We should be able to remove this.
|
| - reservedNames.append(MathMLNames::annotation_xmlTag.localName());
|
| + reservedNames.push_back(MathMLNames::annotation_xmlTag.localName());
|
| }
|
|
|
| if (kNotFound == reservedNames.find(name))
|
|
|