#ifndef CONTENT_TEST_FILEAPI_TEST_FILE_SET_H_
#define CONTENT_TEST_FILEAPI_TEST_FILE_SET_H_
#include <set>
#include "base/files/file_path.h"
namespace fileapi {
class FileSystemFileUtil;
}
namespace content {
struct FileSystemTestCaseRecord {
bool is_directory;
const base::FilePath::CharType path[64];
int64 data_file_size;
};
extern const FileSystemTestCaseRecord kRegularFileSystemTestCases[];
extern const size_t kRegularFileSystemTestCaseSize;
size_t GetRegularFileSystemTestCaseSize();
void SetUpOneFileSystemTestCase(const base::FilePath& root_path,
const FileSystemTestCaseRecord& record);
void SetUpRegularFileSystemTestCases(const base::FilePath& root_path);
}
#endif