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..c92bec266775b34013d17b0f83528b1c45f80ed4 100644 |
| --- a/webkit/fileapi/quota_file_util.h |
| +++ b/webkit/fileapi/quota_file_util.h |
| @@ -25,10 +25,15 @@ class QuotaFileUtil : public FileSystemFileUtil { |
| explicit QuotaFileUtil(FileSystemFileUtil* underlying_file_util); |
| virtual ~QuotaFileUtil(); |
| - // Creates a QuotaFileUtil instance with an underlying FileSystemFileUtil |
| + // Creates a QuotaFileUtil instance with an underlying NativeFileUtil |
| // instance. |
| static QuotaFileUtil* CreateDefault(); |
| + virtual base::PlatformFileError Truncate( |
| + FileSystemOperationContext* fs_context, |
| + const FilePath& path, |
| + int64 length) OVERRIDE; |
| + |
|
kinuko
2011/08/29 07:20:00
ditto... could we remove empty lines between the v
Dai Mikurube (NOT FULLTIME)
2011/08/30 07:47:28
Done.
|
| virtual base::PlatformFileError CopyOrMoveFile( |
| FileSystemOperationContext* fs_context, |
| const FilePath& src_file_path, |
| @@ -39,14 +44,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); |
| }; |