| Index: webkit/fileapi/quota_file_util.h
|
| diff --git a/webkit/fileapi/quota_file_util.h b/webkit/fileapi/quota_file_util.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f945cd85f5b4872a28c30cc71c0069340b5019ad
|
| --- /dev/null
|
| +++ b/webkit/fileapi/quota_file_util.h
|
| @@ -0,0 +1,32 @@
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef WEBKIT_FILEAPI_QUOTA_FILE_UTIL_H_
|
| +#define WEBKIT_FILEAPI_QUOTA_FILE_UTIL_H_
|
| +
|
| +namespace fileapi {
|
| +
|
| +class QuotaFileUtil : public FileSystemFileUtilBase {
|
| + public:
|
| + static QuotaFileUtil* GetInstance();
|
| + virtual ~QuotaFileUtil() {}
|
| +
|
| + base::PlatformFileError Copy(
|
| + const FileSystemOperationContext& fs_context,
|
| + const FilePath& src_file_path,
|
| + const FilePath& dest_file_path);
|
| +
|
| + protected:
|
| + QuotaFileUtil() {}
|
| +
|
| + private:
|
| + friend struct DefaultSingletonTraits<QuotaFileUtilBase>;
|
| + DISALLOW_COPY_AND_ASSIGN(QuotaFileUtil);
|
| +
|
| + FileSystemFileUtilBase* next_file_util_to_quota;
|
| +};
|
| +
|
| +} // namespace fileapi
|
| +
|
| +#endif // WEBKIT_FILEAPI_QUOTA_FILE_UTIL_H_
|
|
|