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

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: Fixed visibility bug. 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
« no previous file with comments | « Source/core/fileapi/File.cpp ('k') | Source/core/fileapi/FileList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/FileList.h
diff --git a/Source/core/fileapi/FileList.h b/Source/core/fileapi/FileList.h
index 079cc3f69701782e50c5252a0fe8ccd94d85a7cc..aac86ba4284243e44ae1e11e2e71d382c228885d 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*);
« no previous file with comments | « Source/core/fileapi/File.cpp ('k') | Source/core/fileapi/FileList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698