| Index: third_party/WebKit/Source/core/dom/DOMStringList.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMStringList.h b/third_party/WebKit/Source/core/dom/DOMStringList.h
|
| index 8e27a79d8d5bc079d96a1a3cf875b7bb5a6b4bd6..23b43ae22ca9884a45963f19546e14198ba9f363 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMStringList.h
|
| +++ b/third_party/WebKit/Source/core/dom/DOMStringList.h
|
| @@ -56,7 +56,7 @@ class CORE_EXPORT DOMStringList final
|
|
|
| bool isEmpty() const { return m_strings.isEmpty(); }
|
| void clear() { m_strings.clear(); }
|
| - void append(const String& string) { m_strings.append(string); }
|
| + void append(const String& string) { m_strings.push_back(string); }
|
| void sort();
|
|
|
| // Implements the IDL.
|
|
|