| Index: third_party/WebKit/Source/web/ExternalPopupMenu.cpp
|
| diff --git a/third_party/WebKit/Source/web/ExternalPopupMenu.cpp b/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
|
| index 2fe19c3672dc57d4f9bfc46075ea5a1333653e50..98c74fa21dd2891684d670023a8e8cc103d71b77 100644
|
| --- a/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
|
| +++ b/third_party/WebKit/Source/web/ExternalPopupMenu.cpp
|
| @@ -214,7 +214,7 @@ void ExternalPopupMenu::didAcceptIndices(const WebVector<int>& indices) {
|
| Vector<int> listIndices;
|
| listIndices.reserveCapacity(indices.size());
|
| for (size_t i = 0; i < indices.size(); ++i)
|
| - listIndices.append(toPopupMenuItemIndex(indices[i], *ownerElement));
|
| + listIndices.push_back(toPopupMenuItemIndex(indices[i], *ownerElement));
|
| ownerElement->selectMultipleOptionsByPopup(listIndices);
|
| }
|
|
|
|
|