chromium/components/autofill/core/browser/geo/state_names.cc

// Copyright 2013 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/geo/state_names.h"

#include <stddef.h>

#include <string>
#include <string_view>
#include <utility>

#include "base/containers/fixed_flat_map.h"
#include "base/ranges/algorithm.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"

namespace autofill::state_names {

namespace {

// TODO(jhawkins): Add more states/provinces.  See http://crbug.com/45039.
constexpr auto kStateData =;

}  // namespace

std::u16string_view GetAbbreviationForName(std::u16string_view name) {}

std::u16string_view GetNameForAbbreviation(std::u16string_view abbreviation) {}

void GetNameAndAbbreviation(std::u16string_view value,
                            std::u16string* name,
                            std::u16string* abbreviation) {}

}  // namespace autofill::state_names