#ifndef COMPONENTS_OFFLINE_PAGES_CORE_MODEL_OFFLINE_PAGE_MODEL_UTILS_H_
#define COMPONENTS_OFFLINE_PAGES_CORE_MODEL_OFFLINE_PAGE_MODEL_UTILS_H_
#include <string>
class GURL;
namespace base {
class FilePath;
}
namespace offline_pages {
enum class OfflinePagesNamespaceEnumeration;
namespace model_utils {
OfflinePagesNamespaceEnumeration ToNamespaceEnum(const std::string& name_space);
std::string AddHistogramSuffix(const std::string& name_space,
const char* histogram_name);
base::FilePath GenerateUniqueFilenameForOfflinePage(
const std::u16string& title,
const GURL& url,
const base::FilePath& target_dir);
}
}
#endif