| Index: third_party/WebKit/Source/platform/FileChooser.cpp
|
| diff --git a/third_party/WebKit/Source/platform/FileChooser.cpp b/third_party/WebKit/Source/platform/FileChooser.cpp
|
| index 0c3420f8fa617bca8b722de5c20e8ad698e52ad2..2d0cc13ed79a39fe7a79bf7793f2a5d35c656489 100644
|
| --- a/third_party/WebKit/Source/platform/FileChooser.cpp
|
| +++ b/third_party/WebKit/Source/platform/FileChooser.cpp
|
| @@ -63,7 +63,7 @@ void FileChooser::chooseFiles(const Vector<FileChooserFileInfo>& files) {
|
| // FIXME: This is inelegant. We should not be looking at settings here.
|
| Vector<String> paths;
|
| for (unsigned i = 0; i < files.size(); ++i)
|
| - paths.append(files[i].path);
|
| + paths.push_back(files[i].path);
|
| if (m_settings.selectedFiles == paths)
|
| return;
|
|
|
|
|