#ifndef CHROME_BROWSER_ENTERPRISE_DATA_CONTROLS_REPORTING_SERVICE_H_
#define CHROME_BROWSER_ENTERPRISE_DATA_CONTROLS_REPORTING_SERVICE_H_
#include "base/memory/raw_ref.h"
#include "base/no_destructor.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
#include "chrome/browser/safe_browsing/cloud_content_scanning/deep_scanning_utils.h"
#include "components/enterprise/data_controls/content/browser/reporting_service_base.h"
#include "components/enterprise/data_controls/content/browser/reporting_service_base_factory.h"
class Profile;
namespace content {
class BrowserContext;
class ClipboardEndpoint;
struct ClipboardMetadata;
}
namespace data_controls {
class Verdict;
class ReportingService : public ReportingServiceBase { … };
class ReportingServiceFactory : public ReportingServiceBaseFactory,
public ProfileKeyedServiceFactory { … };
}
#endif