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

#include "base/feature_list.h"
#include "base/notreached.h"
#include "components/autofill/core/browser/form_parsing/regex_patterns.h"
#include "components/autofill/core/common/autofill_features.h"
#include "components/autofill/core/common/dense_set.h"

namespace autofill {

HeuristicSource GetActiveHeuristicSource() {}

DenseSet<HeuristicSource> GetNonActiveHeuristicSources() {}

std::optional<PatternSource> HeuristicSourceToPatternSource(
    HeuristicSource source) {}

HeuristicSource PatternSourceToHeuristicSource(PatternSource source) {}
}  // namespace autofill