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 #ifndef UI_BASE_MODELS_MENU_SEPARATOR_TYPES_H_ 6 #define UI_BASE_MODELS_MENU_SEPARATOR_TYPES_H_ 7 8 namespace ui { 9 10 // For a separator we have the following types. 11 enum MenuSeparatorType { 12 // Normal - top to bottom: Spacing, line, spacing 13 NORMAL_SEPARATOR, 14 15 // Upper - top to bottom: Line, spacing 16 UPPER_SEPARATOR, 17 18 // Lower - top to bottom: Spacing, line 19 LOWER_SEPARATOR, 20 21 // Spacing - top to bottom: Spacing only. 22 SPACING_SEPARATOR 23 }; 24 25 } // namespace ui 26 27 #endif // UI_BASE_MODELS_MENU_SEPARATOR_TYPES_H_ 28