Chromium Code Reviews| Index: webkit/fileapi/quota_file_util.h |
| diff --git a/webkit/fileapi/quota_file_util.h b/webkit/fileapi/quota_file_util.h |
| index 991497b7dfe52b799971fac9bdfe9ed6b824a9a2..336c15b995bcf5e961ad1ee8ab2919dbf3e4eb7d 100644 |
| --- a/webkit/fileapi/quota_file_util.h |
| +++ b/webkit/fileapi/quota_file_util.h |
| @@ -25,10 +25,14 @@ class QuotaFileUtil : public FileSystemFileUtil { |
| explicit QuotaFileUtil(FileSystemFileUtil* underlying_file_util); |
| virtual ~QuotaFileUtil(); |
| - // Creates a QuotaFileUtil instance with an underlying FileSystemFileUtil |
| - // instance. |
| + // Creates a QuotaFileUtil instance with an underlying FileUtil instance. |
|
ericu
2011/08/25 17:58:05
Should say NativeFileUtil.
Dai Mikurube (NOT FULLTIME)
2011/08/26 05:10:59
Done.
|
| static QuotaFileUtil* CreateDefault(); |
| + virtual base::PlatformFileError Truncate( |
| + FileSystemOperationContext* fs_context, |
| + const FilePath& path, |
| + int64 length) OVERRIDE; |
| + |
| virtual base::PlatformFileError CopyOrMoveFile( |
| FileSystemOperationContext* fs_context, |
| const FilePath& src_file_path, |
| @@ -39,14 +43,7 @@ class QuotaFileUtil : public FileSystemFileUtil { |
| FileSystemOperationContext* fs_context, |
| const FilePath& file_path) OVERRIDE; |
| - virtual base::PlatformFileError Truncate( |
| - FileSystemOperationContext* fs_context, |
| - const FilePath& path, |
| - int64 length) OVERRIDE; |
| - |
| private: |
| - scoped_ptr<FileSystemFileUtil> underlying_file_util_; |
| - |
| DISALLOW_COPY_AND_ASSIGN(QuotaFileUtil); |
| }; |