Chromium Code Reviews| Index: public/web/WebFileChooserCompletion.h |
| diff --git a/public/web/WebFileChooserCompletion.h b/public/web/WebFileChooserCompletion.h |
| index 19c0f268c64947c86a3b2649c52b5635bfa90995..81b8c8d3b86ad7bba4bcc1a821cf3ea9b665df18 100644 |
| --- a/public/web/WebFileChooserCompletion.h |
| +++ b/public/web/WebFileChooserCompletion.h |
| @@ -32,6 +32,7 @@ |
| #define WebFileChooserCompletion_h |
| #include "../platform/WebString.h" |
| +#include "../platform/WebURL.h" |
| namespace blink { |
| @@ -47,6 +48,21 @@ public: |
| // The display name of the file that is to be exposed as File.name in |
| // the DOM layer. If it is empty the base part of the |path| is used. |
| WebString displayName; |
| + |
| + // File system URL. |
| + WebURL fileSystemURL; |
| + |
| + // Metadata of non-native file. |
| + double modificationTime; |
|
tkent
2014/10/17 00:20:22
Please add a comment about expected origin and res
pwnall-personal
2014/10/17 08:52:43
I'm not an OWNER, so feel free to ignore this comm
hirono
2014/10/17 09:30:58
I named it after FileMetadata's member.
https://co
hirono
2014/10/17 09:30:58
Done.
|
| + long long length; |
| + bool isDirectory; |
| + |
| + SelectedFileInfo() |
| + : modificationTime(0) |
| + , length(0) |
| + , isDirectory(false) |
| + { |
| + } |
| }; |
| // Called with zero or more file names. Zero-lengthed vector means that |