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

Unified Diff: Source/core/html/FormDataList.cpp

Issue 884393002: Upgrade Blink to milliseconds-based last modified filetimes, part 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sof-fileinfo-modtime-in-ms-1
Patch Set: fix fast/storage test Created 5 years, 11 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
Index: Source/core/html/FormDataList.cpp
diff --git a/Source/core/html/FormDataList.cpp b/Source/core/html/FormDataList.cpp
index acd22d98979c2cc1793e4b58f372100b9fb41433..2731634357a070802dc05d278a8601f039be7542 100644
--- a/Source/core/html/FormDataList.cpp
+++ b/Source/core/html/FormDataList.cpp
@@ -138,7 +138,7 @@ FormDataList::Entry FormDataList::itemsToEntry(const FormDataList::Item& key, co
String filename = value.filename();
if (filename.isNull())
filename = "blob";
- return Entry(name, File::create(filename, currentTime(), value.blob()->blobDataHandle()));
+ return Entry(name, File::create(filename, currentTimeMS(), value.blob()->blobDataHandle()));
}
bool FormDataList::hasEntry(const String& key) const

Powered by Google App Engine
This is Rietveld 408576698