| Index: webkit/fileapi/file_system_test_helper.h
|
| diff --git a/webkit/fileapi/file_system_test_helper.h b/webkit/fileapi/file_system_test_helper.h
|
| index 209224893dbc98c379bb7ce17f7dbf2cb0168a46..53fc7b87e052dcb920a4c78ee74fbf1b89101652 100644
|
| --- a/webkit/fileapi/file_system_test_helper.h
|
| +++ b/webkit/fileapi/file_system_test_helper.h
|
| @@ -24,9 +24,9 @@ class FilePath;
|
|
|
| namespace fileapi {
|
|
|
| +class FileApiFileUtil;
|
| class FileSystemCallbackDispatcher;
|
| class FileSystemContext;
|
| -class FileSystemFileUtil;
|
| class FileSystemOperation;
|
| class FileSystemOperationContext;
|
| class FileSystemPathManager;
|
| @@ -39,18 +39,18 @@ class FileSystemTestOriginHelper {
|
| FileSystemTestOriginHelper();
|
| ~FileSystemTestOriginHelper();
|
|
|
| - void SetUp(const FilePath& base_dir, FileSystemFileUtil* file_util);
|
| + void SetUp(const FilePath& base_dir, FileApiFileUtil* file_util);
|
| // If you want to use more than one FileSystemTestOriginHelper in a single
|
| // base directory, they have to share a context, so that they don't have
|
| // multiple databases fighting over the lock to the origin directory [deep
|
| - // down inside ObfuscatedFileSystemFileUtil].
|
| + // down inside ObfuscatedFileUtil].
|
| void SetUp(FileSystemContext* file_system_context,
|
| - FileSystemFileUtil* file_util);
|
| + FileApiFileUtil* file_util);
|
| void SetUp(const FilePath& base_dir,
|
| bool incognito_mode,
|
| bool unlimited_quota,
|
| quota::QuotaManagerProxy* quota_manager_proxy,
|
| - FileSystemFileUtil* file_util);
|
| + FileApiFileUtil* file_util);
|
| void TearDown();
|
|
|
| FilePath GetOriginRootPath() const;
|
| @@ -76,7 +76,7 @@ class FileSystemTestOriginHelper {
|
| quota::StorageType storage_type() const {
|
| return FileSystemTypeToQuotaStorageType(type_);
|
| }
|
| - FileSystemFileUtil* file_util() { return file_util_; }
|
| + FileApiFileUtil* file_util() { return file_util_; }
|
|
|
| private:
|
| void InitializeOperationContext(FileSystemOperationContext* context);
|
| @@ -84,7 +84,7 @@ class FileSystemTestOriginHelper {
|
| scoped_refptr<FileSystemContext> file_system_context_;
|
| const GURL origin_;
|
| const FileSystemType type_;
|
| - FileSystemFileUtil* file_util_;
|
| + FileApiFileUtil* file_util_;
|
| int64 initial_usage_size_;
|
| };
|
|
|
|
|