chromium/components/autofill/core/browser/form_parsing/field_candidates.cc

// Copyright 2016 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/form_parsing/field_candidates.h"

#include <algorithm>
#include <array>

#include "base/logging.h"
#include "components/autofill/core/common/autofill_features.h"

namespace autofill {

FieldCandidate::FieldCandidate(FieldType field_type, float field_score)
    :{}

FieldCandidates::FieldCandidates() = default;

FieldCandidates::FieldCandidates(FieldCandidates&& other) = default;
FieldCandidates& FieldCandidates::operator=(FieldCandidates&& other) = default;

FieldCandidates::~FieldCandidates() = default;

void FieldCandidates::AddFieldCandidate(FieldType type, float score) {}

// We currently select a type with the maximum score sum.
FieldType FieldCandidates::BestHeuristicType() const {}

}  // namespace autofill