#ifndef STORAGE_COMMON_FILE_SYSTEM_FILE_SYSTEM_INFO_H_
#define STORAGE_COMMON_FILE_SYSTEM_FILE_SYSTEM_INFO_H_
#include <string>
#include "base/component_export.h"
#include "storage/common/file_system/file_system_types.h"
#include "url/gurl.h"
namespace storage {
struct COMPONENT_EXPORT(STORAGE_COMMON) FileSystemInfo {
FileSystemInfo();
FileSystemInfo(const std::string& filesystem_name,
const GURL& root_url,
storage::FileSystemType mount_type);
~FileSystemInfo();
std::string name;
GURL root_url;
storage::FileSystemType mount_type;
};
}
#endif