#include "components/autofill/core/browser/autofill_type.h"
#include <string_view>
#include <vector>
#include "base/notreached.h"
#include "components/autofill/core/browser/autofill_field.h"
#include "components/autofill/core/browser/field_types.h"
#include "components/autofill/core/browser/proto/api_v1.pb.h"
#include "components/autofill/core/browser/proto/password_requirements.pb.h"
namespace autofill {
AutofillType::ServerPrediction::ServerPrediction() = default;
AutofillType::ServerPrediction::ServerPrediction(const AutofillField& field) { … }
AutofillType::ServerPrediction::ServerPrediction(const ServerPrediction&) =
default;
AutofillType::ServerPrediction& AutofillType::ServerPrediction::operator=(
const ServerPrediction&) = default;
AutofillType::ServerPrediction::ServerPrediction(ServerPrediction&&) = default;
AutofillType::ServerPrediction& AutofillType::ServerPrediction::operator=(
ServerPrediction&&) = default;
AutofillType::ServerPrediction::~ServerPrediction() = default;
FieldType AutofillType::ServerPrediction::server_type() const { … }
bool AutofillType::ServerPrediction::is_override() const { … }
AutofillType::AutofillType(FieldType field_type)
: … { … }
AutofillType::AutofillType(HtmlFieldType field_type) : … { … }
FieldTypeGroup AutofillType::group() const { … }
bool AutofillType::IsUnknown() const { … }
FieldType AutofillType::GetStorableType() const { … }
std::string_view AutofillType::ToStringView() const { … }
}