blob: c1a6b39368c628ffddddc5781a62b1e8941f36cb [file] [log] [blame]
// Copyright (c) 2012 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.
#include "ui/views/examples/example_combobox_model.h"
#include "base/utf_string_conversions.h"
namespace views {
namespace examples {
ExampleComboboxModel::ExampleComboboxModel(const char** strings, int count)
: strings_(strings), count_(count) {
}
ExampleComboboxModel::~ExampleComboboxModel() {
}
int ExampleComboboxModel::GetItemCount() const {
return count_;
}
string16 ExampleComboboxModel::GetItemAt(int index) {
return ASCIIToUTF16(strings_[index]);
}
} // namespace examples
} // namespace views