| Index: webkit/fileapi/file_system_file_util.cc
|
| diff --git a/webkit/fileapi/file_system_file_util.cc b/webkit/fileapi/file_system_file_util.cc
|
| index 41ff6f4e7825e8fb30f093af3e18048c938d9880..13f25274c946f0c9ff47701e80b789a31c7788a5 100644
|
| --- a/webkit/fileapi/file_system_file_util.cc
|
| +++ b/webkit/fileapi/file_system_file_util.cc
|
| @@ -128,6 +128,9 @@ PlatformFileError FileSystemFileUtil::ReadDirectory(
|
| // This will just give the entry's name instead of entire path
|
| // if we use current.value().
|
| entry.name = file_util::FileEnumerator::GetFilename(info).value();
|
| + entry.size = file_util::FileEnumerator::GetFilesize(info);
|
| + entry.last_modified_time =
|
| + file_util::FileEnumerator::GetLastModifiedTime(info);
|
| // TODO(rkc): Fix this also once we've refactored file_util
|
| // http://code.google.com/p/chromium-os/issues/detail?id=15948
|
| // This currently just prevents a file from showing up at all
|
|
|