| Index: Source/core/fileapi/File.h
|
| diff --git a/Source/core/fileapi/File.h b/Source/core/fileapi/File.h
|
| index 58e8819d4a6a05ce9bf0697927ce16239db9ec91..0ded88fee3212ab2338fe61896b916c655ccdd8b 100644
|
| --- a/Source/core/fileapi/File.h
|
| +++ b/Source/core/fileapi/File.h
|
| @@ -104,6 +104,8 @@ public:
|
| return new File(path, name, policy, File::IsNotUserVisible);
|
| }
|
|
|
| + File* clone(const String& name = String()) const;
|
| +
|
| virtual unsigned long long size() const override;
|
| virtual Blob* slice(long long start, long long end, const String& contentType, ExceptionState&) const override;
|
| virtual void close(ExecutionContext*, ExceptionState&) override;
|
| @@ -145,6 +147,7 @@ private:
|
| File(const String& name, double modificationTime, PassRefPtr<BlobDataHandle>);
|
| File(const String& name, const FileMetadata&, UserVisibility);
|
| File(const KURL& fileSystemURL, const FileMetadata&, UserVisibility);
|
| + File(const File&);
|
|
|
| void invalidateSnapshotMetadata() { m_snapshotSize = -1; }
|
|
|
|
|