chromium/components/autofill/core/browser/ui/country_combobox_model.cc

// Copyright 2012 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/ui/country_combobox_model.h"

#include <algorithm>
#include <iterator>
#include <memory>
#include <utility>

#include "base/check.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "components/autofill/core/browser/geo/autofill_country.h"
#include "components/autofill/core/browser/geo/country_data.h"
#include "components/autofill/core/browser/personal_data_manager.h"
#include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_ui.h"
#include "ui/base/l10n/l10n_util_collator.h"
#include "ui/base/models/combobox_model_observer.h"

namespace autofill {

CountryComboboxModel::CountryComboboxModel() = default;

CountryComboboxModel::~CountryComboboxModel() = default;

void CountryComboboxModel::SetCountries(
    const PersonalDataManager& manager,
    const base::RepeatingCallback<bool(const std::string&)>& filter,
    const std::string& app_locale) {}

size_t CountryComboboxModel::GetItemCount() const {}

std::u16string CountryComboboxModel::GetItemAt(size_t index) const {}

bool CountryComboboxModel::IsItemSeparatorAt(size_t index) const {}

std::string CountryComboboxModel::GetDefaultCountryCode() const {}

}  // namespace autofill