| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" | 5 #include "chrome/browser/ui/autofill/autofill_dialog_models.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
| 9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
| 10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "chrome/common/pref_names.h" | 13 #include "chrome/common/pref_names.h" |
| 14 #include "chrome/grit/generated_resources.h" | 14 #include "chrome/grit/generated_resources.h" |
| 15 #include "components/autofill/core/browser/autofill_country.h" | 15 #include "components/autofill/core/browser/autofill_country.h" |
| 16 #include "grit/theme_resources.h" | |
| 17 #include "ui/base/l10n/l10n_util.h" | 16 #include "ui/base/l10n/l10n_util.h" |
| 18 | 17 |
| 19 namespace autofill { | 18 namespace autofill { |
| 20 | 19 |
| 21 SuggestionsMenuModelDelegate::~SuggestionsMenuModelDelegate() {} | 20 SuggestionsMenuModelDelegate::~SuggestionsMenuModelDelegate() {} |
| 22 | 21 |
| 23 // SuggestionsMenuModel ---------------------------------------------------- | 22 // SuggestionsMenuModel ---------------------------------------------------- |
| 24 | 23 |
| 25 SuggestionsMenuModel::SuggestionsMenuModel( | 24 SuggestionsMenuModel::SuggestionsMenuModel( |
| 26 SuggestionsMenuModelDelegate* delegate) | 25 SuggestionsMenuModelDelegate* delegate) |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 base::string16 YearComboboxModel::GetItemAt(int index) { | 172 base::string16 YearComboboxModel::GetItemAt(int index) { |
| 174 if (index == 0) { | 173 if (index == 0) { |
| 175 return l10n_util::GetStringUTF16( | 174 return l10n_util::GetStringUTF16( |
| 176 IDS_AUTOFILL_DIALOG_PLACEHOLDER_EXPIRY_YEAR); | 175 IDS_AUTOFILL_DIALOG_PLACEHOLDER_EXPIRY_YEAR); |
| 177 } | 176 } |
| 178 | 177 |
| 179 return base::IntToString16(this_year_ + index - 1); | 178 return base::IntToString16(this_year_ + index - 1); |
| 180 } | 179 } |
| 181 | 180 |
| 182 } // namespace autofill | 181 } // namespace autofill |
| OLD | NEW |