diff options
Diffstat (limited to 'chrome/browser/language_combobox_model.cc')
-rw-r--r-- | chrome/browser/language_combobox_model.cc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/chrome/browser/language_combobox_model.cc b/chrome/browser/language_combobox_model.cc index 1745167..e1b610b 100644 --- a/chrome/browser/language_combobox_model.cc +++ b/chrome/browser/language_combobox_model.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -151,6 +151,14 @@ LanguageComboboxModel::LanguageComboboxModel( profile_(profile) { } +int LanguageComboboxModel::GetItemCount() { + return get_languages_count(); +} + +string16 LanguageComboboxModel::GetItemAt(int index) { + return WideToUTF16Hack(GetLanguageNameAt(index)); +} + // Returns the index of the language currently specified in the user's // preference file. Note that it's possible for language A to be picked // while chrome is currently in language B if the user specified language B |