Index: Source/core/fileapi/File.h |
diff --git a/Source/core/fileapi/File.h b/Source/core/fileapi/File.h |
index 0ded88fee3212ab2338fe61896b916c655ccdd8b..4ca22cceccb274fb5a36db43dd49c9dbba1d979e 100644 |
--- a/Source/core/fileapi/File.h |
+++ b/Source/core/fileapi/File.h |
@@ -35,7 +35,7 @@ namespace blink { |
class ExceptionState; |
class ExecutionContext; |
-struct FileMetadata; |
+class FileMetadata; |
class KURL; |
class File final : public Blob { |
@@ -132,7 +132,7 @@ public: |
const String& webkitRelativePath() const { return m_relativePath; } |
// Note that this involves synchronous file operation. Think twice before calling this function. |
- void captureSnapshot(long long& snapshotSize, double& snapshotModificationTime) const; |
+ void captureSnapshot(long long& snapshotSize, double& snapshotModificationTimeMS) const; |
// Returns true if this has a valid snapshot metadata (i.e. m_snapshotSize >= 0). |
bool hasValidSnapshotMetadata() const { return m_snapshotSize >= 0; } |
@@ -172,7 +172,7 @@ private: |
// If m_snapshotSize is negative (initialized to -1 by default), the snapshot metadata is invalid and we retrieve the latest metadata synchronously in size(), lastModifiedTime() and slice(). |
// Otherwise, the snapshot metadata are used directly in those methods. |
long long m_snapshotSize; |
- const double m_snapshotModificationTime; |
+ const double m_snapshotModificationTimeMS; |
String m_relativePath; |
}; |