// Copyright 2022 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/common/html_field_types.h" #include "base/notreached.h" namespace autofill { std::string_view FieldTypeToStringView(HtmlFieldType type) { … } std::string FieldTypeToString(HtmlFieldType type) { … } std::string_view HtmlFieldModeToStringView(HtmlFieldMode mode) { … } std::string HtmlFieldModeToString(HtmlFieldMode mode) { … } } // namespace autofill