OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "chrome/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
6 | 6 |
7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
8 | 8 |
9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
10 | 10 |
(...skipping 3082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3093 "the current page is provided as the first suggestion without a title. " | 3093 "the current page is provided as the first suggestion without a title. " |
3094 "Enabling this flag causes the title to be displayed."; | 3094 "Enabling this flag causes the title to be displayed."; |
3095 | 3095 |
3096 const char kOmniboxUIMaxAutocompleteMatchesName[] = | 3096 const char kOmniboxUIMaxAutocompleteMatchesName[] = |
3097 "Omnibox UI Max Autocomplete Matches"; | 3097 "Omnibox UI Max Autocomplete Matches"; |
3098 | 3098 |
3099 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = | 3099 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = |
3100 "Changes the maximum number of autocomplete matches displayed in the " | 3100 "Changes the maximum number of autocomplete matches displayed in the " |
3101 "Omnibox UI."; | 3101 "Omnibox UI."; |
3102 | 3102 |
| 3103 const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown"; |
| 3104 |
| 3105 const char kOmniboxUINarrowDropdownDescription[] = |
| 3106 "Makes the suggestions dropdown width match the omnibox width."; |
| 3107 |
3103 const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout"; | 3108 const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout"; |
3104 | 3109 |
3105 const char kOmniboxUIVerticalLayoutDescription[] = | 3110 const char kOmniboxUIVerticalLayoutDescription[] = |
3106 "Displays Omnibox sugestions in 2 lines - title over origin."; | 3111 "Displays Omnibox sugestions in 2 lines - title over origin."; |
3107 | 3112 |
3108 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; | 3113 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; |
3109 | 3114 |
3110 const char kOmniboxUIVerticalMarginDescription[] = | 3115 const char kOmniboxUIVerticalMarginDescription[] = |
3111 "Changes the vertical margin in the Omnibox UI."; | 3116 "Changes the vertical margin in the Omnibox UI."; |
3112 | 3117 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3199 | 3204 |
3200 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3205 const char kDisableNewVirtualKeyboardBehaviorName[] = |
3201 "New window behavior for the accessibility keyboard"; | 3206 "New window behavior for the accessibility keyboard"; |
3202 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3207 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
3203 "Disable new window behavior for the accessibility keyboard " | 3208 "Disable new window behavior for the accessibility keyboard " |
3204 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3209 "in non-sticky mode (do not change work area in non-sticky mode)."; |
3205 | 3210 |
3206 #endif // defined(OS_CHROMEOS) | 3211 #endif // defined(OS_CHROMEOS) |
3207 | 3212 |
3208 } // namespace flag_descriptions | 3213 } // namespace flag_descriptions |
OLD | NEW |