chromium/chrome/browser/enterprise/reporting/legacy_tech/legacy_tech_report_generator.cc

// Copyright 2023 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/legacy_tech/legacy_tech_report_generator.h"
#include "components/enterprise/common/proto/legacy_tech_events.pb.h"
#include "content/public/browser/legacy_tech_cookie_issue_details.h"

namespace enterprise_reporting {

namespace {
GURL SanitizeUrl(const GURL& url) {}
}  // namespace

LegacyTechReportGenerator::LegacyTechData::LegacyTechData() = default;
LegacyTechReportGenerator::LegacyTechData::LegacyTechData(
    const std::string& type,
    const GURL& url,
    const GURL& frame_url,
    const std::string& matched_url,
    const std::string& filename,
    uint64_t line,
    uint64_t column,
    std::optional<content::LegacyTechCookieIssueDetails> cookie_issue_details)
    :{}

LegacyTechReportGenerator::LegacyTechData::LegacyTechData(
    LegacyTechData&& other) = default;
LegacyTechReportGenerator::LegacyTechData&
LegacyTechReportGenerator::LegacyTechData::operator=(LegacyTechData&& other) =
    default;
LegacyTechReportGenerator::LegacyTechData::~LegacyTechData() = default;

bool LegacyTechReportGenerator::LegacyTechData::operator==(
    const LegacyTechData& other) const = default;

LegacyTechReportGenerator::LegacyTechReportGenerator() = default;
LegacyTechReportGenerator::~LegacyTechReportGenerator() = default;

std::unique_ptr<LegacyTechEvent> LegacyTechReportGenerator::Generate(
    const RealTimeReportGenerator::Data& data) {}

}  // namespace enterprise_reporting