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 3111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3122 "the current page is provided as the first suggestion without a title. " | 3122 "the current page is provided as the first suggestion without a title. " |
3123 "Enabling this flag causes the title to be displayed."; | 3123 "Enabling this flag causes the title to be displayed."; |
3124 | 3124 |
3125 const char kOmniboxUIMaxAutocompleteMatchesName[] = | 3125 const char kOmniboxUIMaxAutocompleteMatchesName[] = |
3126 "Omnibox UI Max Autocomplete Matches"; | 3126 "Omnibox UI Max Autocomplete Matches"; |
3127 | 3127 |
3128 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = | 3128 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = |
3129 "Changes the maximum number af autocomplete matches displayed in the " | 3129 "Changes the maximum number af autocomplete matches displayed in the " |
3130 "Omnibox UI."; | 3130 "Omnibox UI."; |
3131 | 3131 |
| 3132 const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown"; |
| 3133 |
| 3134 const char kOmniboxUINarrowDropdownDescription[] = |
| 3135 "Makes the suggestions dropdown width match the omnibox width."; |
| 3136 |
3132 const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout"; | 3137 const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout"; |
3133 | 3138 |
3134 const char kOmniboxUIVerticalLayoutDescription[] = | 3139 const char kOmniboxUIVerticalLayoutDescription[] = |
3135 "Displays Omnibox sugestions in 2 lines - title over origin."; | 3140 "Displays Omnibox sugestions in 2 lines - title over origin."; |
3136 | 3141 |
3137 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; | 3142 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; |
3138 | 3143 |
3139 const char kOmniboxUIVerticalMarginDescription[] = | 3144 const char kOmniboxUIVerticalMarginDescription[] = |
3140 "Changes the vertical margin in the Omnibox UI."; | 3145 "Changes the vertical margin in the Omnibox UI."; |
3141 | 3146 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3228 | 3233 |
3229 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3234 const char kDisableNewVirtualKeyboardBehaviorName[] = |
3230 "New window behavior for the accessibility keyboard"; | 3235 "New window behavior for the accessibility keyboard"; |
3231 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3236 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
3232 "Disable new window behavior for the accessibility keyboard " | 3237 "Disable new window behavior for the accessibility keyboard " |
3233 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3238 "in non-sticky mode (do not change work area in non-sticky mode)."; |
3234 | 3239 |
3235 #endif // defined(OS_CHROMEOS) | 3240 #endif // defined(OS_CHROMEOS) |
3236 | 3241 |
3237 } // namespace flag_descriptions | 3242 } // namespace flag_descriptions |
OLD | NEW |