#ifndef WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_INFO_H_
#define WEBKIT_COMMON_FILEAPI_FILE_SYSTEM_INFO_H_
#include <string>
#include "url/gurl.h"
#include "webkit/common/fileapi/file_system_types.h"
#include "webkit/common/webkit_storage_common_export.h"
namespace fileapi {
struct WEBKIT_STORAGE_COMMON_EXPORT FileSystemInfo {
FileSystemInfo();
FileSystemInfo(const std::string& filesystem_name,
const GURL& root_url,
fileapi::FileSystemType mount_type);
~FileSystemInfo();
std::string name;
GURL root_url;
fileapi::FileSystemType mount_type;
};
}
#endif