Support SizeClassIdiom on iOS7.
[chromium-blink-merge.git] / chrome / browser / ui / passwords / save_password_refusal_combobox_model.cc
blob8d397ee2f034a06b9aaf4edcff4ccd8ca22f4d75
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)
12 items_.push_back(
13 l10n_util::GetStringUTF16(IDS_PASSWORD_MANAGER_CANCEL_BUTTON));
14 items_.push_back(
15 l10n_util::GetStringUTF16(IDS_PASSWORD_MANAGER_BLACKLIST_BUTTON));
16 #endif
19 SavePasswordRefusalComboboxModel::~SavePasswordRefusalComboboxModel() {}
21 int SavePasswordRefusalComboboxModel::GetItemCount() const {
22 return items_.size();
25 base::string16 SavePasswordRefusalComboboxModel::GetItemAt(int index) {
26 return items_[index];
29 bool SavePasswordRefusalComboboxModel::IsItemSeparatorAt(int index) {
30 return items_[index].empty();
33 int SavePasswordRefusalComboboxModel::GetDefaultIndex() const {
34 return 0;