1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/passwords/save_password_refusal_combobox_model.h"
7 #include "chrome/grit/generated_resources.h"
8 #include "ui/base/l10n/l10n_util.h"
10 SavePasswordRefusalComboboxModel::SavePasswordRefusalComboboxModel() {
11 #if !defined(OS_ANDROID)
13 l10n_util::GetStringUTF16(IDS_PASSWORD_MANAGER_CANCEL_BUTTON
));
15 l10n_util::GetStringUTF16(IDS_PASSWORD_MANAGER_BLACKLIST_BUTTON
));
19 SavePasswordRefusalComboboxModel::~SavePasswordRefusalComboboxModel() {}
21 int SavePasswordRefusalComboboxModel::GetItemCount() const {
25 base::string16
SavePasswordRefusalComboboxModel::GetItemAt(int index
) {
29 bool SavePasswordRefusalComboboxModel::IsItemSeparatorAt(int index
) {
30 return items_
[index
].empty();
33 int SavePasswordRefusalComboboxModel::GetDefaultIndex() const {