Home | History | Annotate | Download | only in models
      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 
      9 bool ComboboxModel::IsItemSeparatorAt(int index) {
     10   return false;
     11 }
     12 
     13 int ComboboxModel::GetDefaultIndex() const {
     14   return 0;
     15 }
     16 
     17 }  // namespace ui
     18