#ifndef CHROME_BROWSER_CHROMEOS_ENTERPRISE_CLOUD_STORAGE_POLICY_UTILS_H_
#define CHROME_BROWSER_CHROMEOS_ENTERPRISE_CLOUD_STORAGE_POLICY_UTILS_H_
#include "base/values.h"
class PrefRegistrySimple;
class Profile;
namespace extensions::api::odfs_config_private {
enum class Mount;
}
namespace chromeos::cloud_storage {
void RegisterProfilePrefs(PrefRegistrySimple* registry);
extensions::api::odfs_config_private::Mount GetMicrosoftOneDriveMount(
const Profile* profile);
base::Value::List GetMicrosoftOneDriveAccountRestrictions(
const Profile* profile);
}
#endif