Chromium Code Reviews| Index: public/web/WebFileChooserCompletion.h |
| diff --git a/public/web/WebFileChooserCompletion.h b/public/web/WebFileChooserCompletion.h |
| index 19c0f268c64947c86a3b2649c52b5635bfa90995..39b2f8e51d013352fc5f987958e5c0bcf87dab6a 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,22 @@ 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. |
| + // 0 is Unit epoch, unit is sec. |
|
tkent
2014/10/20 00:48:48
Unit -> Unix?
hirono
2014/10/20 03:50:06
Done.
|
| + double modificationTime; |
| + long long length; |
| + bool isDirectory; |
| + |
| + SelectedFileInfo() |
| + : modificationTime(0) |
| + , length(0) |
| + , isDirectory(false) |
| + { |
| + } |
| }; |
| // Called with zero or more file names. Zero-lengthed vector means that |