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
3// found in the LICENSE file.
4
5#include "ui/base/models/combobox_model.h"
6
7namespace ui {
8
9bool ComboboxModel::IsItemSeparatorAt(int index) {
10  return false;
11}
12
13int ComboboxModel::GetDefaultIndex() const {
14  return 0;
15}
16
17bool ComboboxModel::IsItemEnabledAt(int index) const {
18  return true;
19}
20
21}  // namespace ui
22