Index: third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.h |
diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.h b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.h |
index 367f4d53d7b6af654525bf0c4f29ff8d5045c5ee..0e4cd17b0a5c2500c31177fe9eaa192a12b43676 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.h |
+++ b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.h |
@@ -51,8 +51,8 @@ class SQLResultSetRowList final |
const Vector<String>& columnNames() const { return m_columns; } |
const Vector<SQLValue>& values() const { return m_result; } |
- void addColumn(const String& name) { m_columns.append(name); } |
- void addResult(const SQLValue& result) { m_result.append(result); } |
+ void addColumn(const String& name) { m_columns.push_back(name); } |
+ void addResult(const SQLValue& result) { m_result.push_back(result); } |
unsigned length() const; |
ScriptValue item(ScriptState*, unsigned index, ExceptionState&); |