chromium/components/autofill/core/browser/autofill_feedback_data.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 "components/autofill/core/browser/autofill_feedback_data.h"

#include "components/autofill/core/browser/autofill_field.h"
#include "components/autofill/core/browser/browser_autofill_manager.h"
#include "components/autofill/core/browser/metrics/log_event.h"
#include "components/autofill/core/common/autofill_clock.h"

namespace autofill::data_logs {
namespace {
// Time limit within which the last autofill event is considered related to the
// feedback report.
constexpr base::TimeDelta kAutofillEventTimeLimit =;

std::string FillDataTypeToStr(FillDataType type) {}

base::Value::Dict BuildFieldDataLogs(AutofillField* field) {}

base::Value::Dict BuildLastAutofillEventLogs(AutofillManager* manager) {}
}  // namespace

base::Value::Dict FetchAutofillFeedbackData(AutofillManager* manager,
                                            base::Value::Dict extra_logs) {}

}  // namespace autofill::data_logs