Fix build break
[chromium-blink-merge.git] / ui / base / models / combobox_model.cc
blob2e4d02e3745d9cd85238a27c7c7c93af84819548
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 } // namespace ui