chromium/chrome/browser/enterprise/reporting/real_time_report_generator_desktop.cc

// 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.

#include "chrome/browser/enterprise/reporting/real_time_report_generator_desktop.h"
#include "base/logging.h"
#include "base/notreached.h"
#include "components/enterprise/browser/reporting/real_time_report_type.h"
#include "components/enterprise/common/proto/extensions_workflow_events.pb.h"

namespace enterprise_reporting {

RealTimeReportGeneratorDesktop::RealTimeReportGeneratorDesktop() = default;
RealTimeReportGeneratorDesktop::~RealTimeReportGeneratorDesktop() = default;

std::vector<std::unique_ptr<google::protobuf::MessageLite>>
RealTimeReportGeneratorDesktop::Generate(
    RealTimeReportType type,
    const RealTimeReportGenerator::Data& data) {}

}  // namespace enterprise_reporting