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 |