#ifndef COMPONENTS_SUPERVISED_USER_CORE_BROWSER_SUPERVISED_USER_SERVICE_H_
#define COMPONENTS_SUPERVISED_USER_CORE_BROWSER_SUPERVISED_USER_SERVICE_H_
#include <stddef.h>
#include <memory>
#include <string>
#include "base/functional/callback.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/raw_ref.h"
#include "base/observer_list.h"
#include "build/build_config.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/prefs/pref_change_registrar.h"
#include "components/supervised_user/core/browser/remote_web_approvals_manager.h"
#include "components/supervised_user/core/browser/supervised_user_url_filter.h"
#include "components/supervised_user/core/common/supervised_users.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
class PrefService;
class SupervisedUserServiceObserver;
class SupervisedUserServiceFactory;
namespace signin {
class IdentityManager;
}
namespace syncer {
class SyncService;
}
namespace supervised_user {
class SupervisedUserSettingsService;
class SupervisedUserService : public KeyedService { … };
}
#endif