| Index: third_party/WebKit/Source/core/fileapi/FileList.h
|
| diff --git a/third_party/WebKit/Source/core/fileapi/FileList.h b/third_party/WebKit/Source/core/fileapi/FileList.h
|
| index 4f8871cb7ca5e03de4b9ae68632abeba1184ee88..8a8705a5954ac31bcaf6a91118359660928ca013 100644
|
| --- a/third_party/WebKit/Source/core/fileapi/FileList.h
|
| +++ b/third_party/WebKit/Source/core/fileapi/FileList.h
|
| @@ -46,7 +46,7 @@ class CORE_EXPORT FileList final : public GarbageCollected<FileList>,
|
|
|
| bool isEmpty() const { return m_files.isEmpty(); }
|
| void clear() { m_files.clear(); }
|
| - void append(File* file) { m_files.append(file); }
|
| + void append(File* file) { m_files.push_back(file); }
|
| Vector<String> pathsForUserVisibleFiles() const;
|
|
|
| DECLARE_TRACE();
|
|
|