| Index: third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
|
| index e071880b48cf86c633c6583d4f24c8569c0b73db..d27ea037fb55dcbf75c3dad3883026336003de15 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
|
| @@ -144,7 +144,7 @@ IDBKeyPath::IDBKeyPath(const WebIDBKeyPath& keyPath) {
|
| case WebIDBKeyPathTypeArray:
|
| m_type = ArrayType;
|
| for (size_t i = 0, size = keyPath.array().size(); i < size; ++i)
|
| - m_array.append(keyPath.array()[i]);
|
| + m_array.push_back(keyPath.array()[i]);
|
| return;
|
| }
|
| ASSERT_NOT_REACHED();
|
|
|