chromium/components/enterprise/browser/reporting/real_time_report_generator.h

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_ENTERPRISE_BROWSER_REPORTING_REAL_TIME_REPORT_GENERATOR_H_
#define COMPONENTS_ENTERPRISE_BROWSER_REPORTING_REAL_TIME_REPORT_GENERATOR_H_

#include <memory>
#include <vector>

#include "components/enterprise/browser/reporting/real_time_report_type.h"
#include "third_party/protobuf/src/google/protobuf/message_lite.h"

namespace enterprise_reporting {

class ReportingDelegateFactory;

// Generator of reports that is uploaded with the ERP (Encrypted Reporting
// Pipeline). The reports generated here should be relatively small and can be
// uploaded much more frequently than the CBCM status report.
class RealTimeReportGenerator {};

}  // namespace enterprise_reporting

#endif  // COMPONENTS_ENTERPRISE_BROWSER_REPORTING_REAL_TIME_REPORT_GENERATOR_H_