#ifndef CHROME_BROWSER_ENTERPRISE_DATA_CONTROLS_CHROME_RULES_SERVICE_H_
#define CHROME_BROWSER_ENTERPRISE_DATA_CONTROLS_CHROME_RULES_SERVICE_H_
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
#include "components/enterprise/data_controls/content/browser/rules_service.h"
#include "components/enterprise/data_controls/content/browser/rules_service_factory.h"
#include "components/enterprise/data_controls/core/browser/verdict.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/prefs/pref_change_registrar.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/clipboard_types.h"
namespace base {
template <typename T>
class NoDestructor;
}
namespace data_controls {
class ChromeRulesService : public RulesService { … };
class ChromeRulesServiceFactory : public RulesServiceFactory,
public ProfileKeyedServiceFactory { … };
}
#endif