| Index: views/examples/example_combobox_model.cc
|
| diff --git a/views/examples/example_combobox_model.cc b/views/examples/example_combobox_model.cc
|
| deleted file mode 100644
|
| index ec55093068ca87c5483c4a6615083ab64bb16550..0000000000000000000000000000000000000000
|
| --- a/views/examples/example_combobox_model.cc
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -// Copyright (c) 2011 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 "views/examples/example_combobox_model.h"
|
| -
|
| -#include "base/stringprintf.h"
|
| -#include "base/utf_string_conversions.h"
|
| -#include "ui/base/models/combobox_model.h"
|
| -
|
| -namespace examples {
|
| -
|
| -ExampleComboboxModel::ExampleComboboxModel(const char** strings, int count)
|
| - : strings_(strings), count_(count) {
|
| -}
|
| -
|
| -ExampleComboboxModel::~ExampleComboboxModel() {
|
| -}
|
| -
|
| -int ExampleComboboxModel::GetItemCount() {
|
| - return count_;
|
| -}
|
| -
|
| -string16 ExampleComboboxModel::GetItemAt(int index) {
|
| - return ASCIIToUTF16(strings_[index]);
|
| -}
|
| -
|
| -} // namespace examples
|
|
|