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

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

Issue 235373005: Handle JS-created files in <input type="file">. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased. Created 6 years, 5 months 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: Source/core/fileapi/FileList.h
diff --git a/Source/core/fileapi/FileList.h b/Source/core/fileapi/FileList.h
index ab9e0bad4c72bb1f38e42c20e000ed6f144a47c9..f91ee8d82c0c8a206c607b78c5e7d84aa9f6159d 100644
--- a/Source/core/fileapi/FileList.h
+++ b/Source/core/fileapi/FileList.h
@@ -49,7 +49,7 @@ public:
bool isEmpty() const { return m_files.isEmpty(); }
void clear() { m_files.clear(); }
void append(PassRefPtrWillBeRawPtr<File> file) { m_files.append(file); }
- Vector<String> paths() const;
+ Vector<String> pathsForUserVisibleFiles() const;
void trace(Visitor*);

Powered by Google App Engine
This is Rietveld 408576698