#ifndef COMPONENTS_SUPERVISED_USER_CORE_BROWSER_SUPERVISED_USER_PREF_STORE_H_
#define COMPONENTS_SUPERVISED_USER_CORE_BROWSER_SUPERVISED_USER_PREF_STORE_H_
#include <memory>
#include <string_view>
#include "base/callback_list.h"
#include "base/observer_list.h"
#include "base/values.h"
#include "components/prefs/pref_store.h"
#include "components/supervised_user/core/common/supervised_users.h"
namespace base {
class Value;
}
class PrefValueMap;
namespace supervised_user {
class SupervisedUserSettingsService;
}
class SupervisedUserPrefStore : public PrefStore { … };
#endif