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

Unified Diff: Source/web/WebFileChooserCompletionImpl.cpp

Issue 882343002: Upgrade Blink to milliseconds-based last modified filetimes, part 5. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sof-fileinfo-modtime-in-ms-3
Patch Set: rebased Created 5 years, 10 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/platform/exported/WebFileSystemCallbacks.cpp ('k') | public/platform/WebFileInfo.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebFileChooserCompletionImpl.cpp
diff --git a/Source/web/WebFileChooserCompletionImpl.cpp b/Source/web/WebFileChooserCompletionImpl.cpp
index 49948fafd426deb391f3f558f5abbde785ffe289..b6b8f2f29c16908ec0f0dae27830520afe831c8e 100644
--- a/Source/web/WebFileChooserCompletionImpl.cpp
+++ b/Source/web/WebFileChooserCompletionImpl.cpp
@@ -62,7 +62,7 @@ void WebFileChooserCompletionImpl::didChooseFile(const WebVector<SelectedFileInf
fileInfo.append(FileChooserFileInfo(files[i].path, files[i].displayName));
} else {
FileMetadata metadata;
- metadata.modificationTimeMS = files[i].modificationTime * msPerSecond;
+ metadata.modificationTime = files[i].modificationTime * msPerSecond;
metadata.length = files[i].length;
metadata.type = files[i].isDirectory ? FileMetadata::TypeDirectory : FileMetadata::TypeFile;
fileInfo.append(FileChooserFileInfo(files[i].fileSystemURL, metadata));
« no previous file with comments | « Source/platform/exported/WebFileSystemCallbacks.cpp ('k') | public/platform/WebFileInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698