| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/views/controls/menu/menu_config.h" | 5 #include "ui/views/controls/menu/menu_config.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 namespace views { | 9 namespace views { |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 scroll_arrow_height(3), | 33 scroll_arrow_height(3), |
| 34 label_to_minor_text_padding(10), | 34 label_to_minor_text_padding(10), |
| 35 item_min_height(0), | 35 item_min_height(0), |
| 36 show_accelerators(true), | 36 show_accelerators(true), |
| 37 always_use_icon_to_label_padding(false), | 37 always_use_icon_to_label_padding(false), |
| 38 align_arrow_and_shortcut(false), | 38 align_arrow_and_shortcut(false), |
| 39 offset_context_menus(false), | 39 offset_context_menus(false), |
| 40 use_outer_border(true), | 40 use_outer_border(true), |
| 41 icons_in_label(false), | 41 icons_in_label(false), |
| 42 check_selected_combobox_item(false), | 42 check_selected_combobox_item(false), |
| 43 native_theme(theme), | |
| 44 show_delay(400), | 43 show_delay(400), |
| 45 corner_radius(0) { | 44 corner_radius(0) { |
| 46 Init(theme); | 45 Init(theme); |
| 47 } | 46 } |
| 48 | 47 |
| 49 MenuConfig::~MenuConfig() {} | 48 MenuConfig::~MenuConfig() {} |
| 50 | 49 |
| 51 } // namespace views | 50 } // namespace views |
| OLD | NEW |