Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Unified Diff: third_party/WebKit/Source/core/fileapi/FileList.h

Issue 2585283002: Migrate WTF::Vector::append() to ::push_back() [part 6 of N] (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ResourceTest.cpp ('k') | third_party/WebKit/Source/core/fileapi/FileList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698