| Index: third_party/WebKit/Source/core/page/DragData.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/DragData.cpp b/third_party/WebKit/Source/core/page/DragData.cpp
|
| index 373172d16b5b63c436f99c657cf0652a2997f344..3059fa65d1204cc99709be0bbc90ba2d17b4cb55 100644
|
| --- a/third_party/WebKit/Source/core/page/DragData.cpp
|
| +++ b/third_party/WebKit/Source/core/page/DragData.cpp
|
| @@ -81,7 +81,7 @@ void DragData::asFilePaths(Vector<String>& result) const {
|
| const Vector<String>& filenames = m_platformDragData->filenames();
|
| for (size_t i = 0; i < filenames.size(); ++i) {
|
| if (!filenames[i].isEmpty())
|
| - result.append(filenames[i]);
|
| + result.push_back(filenames[i]);
|
| }
|
| }
|
|
|
|
|