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

Unified Diff: Source/platform/FileMetadata.h

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/modules/filesystem/Metadata.h ('k') | Source/platform/FileMetadata.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/FileMetadata.h
diff --git a/Source/platform/FileMetadata.h b/Source/platform/FileMetadata.h
index b2507b4cbdbfb8f99eb2b685b69da14d9bab7877..aaf57d8440352d6e2aae1149f5bb1fc7d446c3df 100644
--- a/Source/platform/FileMetadata.h
+++ b/Source/platform/FileMetadata.h
@@ -45,7 +45,7 @@ inline bool isValidFileTime(double time) { return std::isfinite(time); }
class FileMetadata {
public:
FileMetadata()
- : modificationTimeMS(invalidFileTime())
+ : modificationTime(invalidFileTime())
, length(-1)
, type(TypeUnknown)
{
@@ -53,7 +53,7 @@ public:
// The last modification time of the file, in milliseconds.
// The value NaN means that the time is not known.
- double modificationTimeMS;
+ double modificationTime;
// The length of the file in bytes.
// The value -1 means that the length is not set.
« no previous file with comments | « Source/modules/filesystem/Metadata.h ('k') | Source/platform/FileMetadata.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698