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 7 namespace ui { 8 IsItemSeparatorAt(int index)9bool ComboboxModel::IsItemSeparatorAt(int index) { 10 return false; 11 } 12 GetDefaultIndex() const13int ComboboxModel::GetDefaultIndex() const { 14 return 0; 15 } 16 IsItemEnabledAt(int index) const17bool ComboboxModel::IsItemEnabledAt(int index) const { 18 return true; 19 } 20 21 } // namespace ui 22