Update V8 to version 4.7.45.
[chromium-blink-merge.git] / ui / base / models / combobox_model.cc
blobc6913da55e5f3b370a2330fe0e5de3573e1d54fe
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.
5 #include "ui/base/models/combobox_model.h"
7 namespace ui {
9 bool ComboboxModel::IsItemSeparatorAt(int index) {
10 return false;
13 int ComboboxModel::GetDefaultIndex() const {
14 return 0;
17 bool ComboboxModel::IsItemEnabledAt(int index) const {
18 return true;
21 } // namespace ui