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 3109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3120 "the current page is provided as the first suggestion without a title. " | 3120 "the current page is provided as the first suggestion without a title. " |
3121 "Enabling this flag causes the title to be displayed."; | 3121 "Enabling this flag causes the title to be displayed."; |
3122 | 3122 |
3123 const char kOmniboxUIMaxAutocompleteMatchesName[] = | 3123 const char kOmniboxUIMaxAutocompleteMatchesName[] = |
3124 "Omnibox UI Max Autocomplete Matches"; | 3124 "Omnibox UI Max Autocomplete Matches"; |
3125 | 3125 |
3126 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = | 3126 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = |
3127 "Changes the maximum number af autocomplete matches displayed in the " | 3127 "Changes the maximum number af autocomplete matches displayed in the " |
3128 "Omnibox UI."; | 3128 "Omnibox UI."; |
3129 | 3129 |
3130 const char kOmniboxUISuggestionsDropdownWidthName[] = | |
3131 "Omnibox UI Suggestions Dropdown Width"; | |
3132 | |
3133 const char kOmniboxUISuggestionsDropdownWidthDescription[] = | |
3134 "Makes the suggestions dropdown width match the Omnibox width."; | |
Peter Kasting
2017/06/05 18:25:45
Nit: Don't capitalize Omnibox
tommycli
2017/06/05 22:39:21
Done.
| |
3135 | |
3130 const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout"; | 3136 const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout"; |
3131 | 3137 |
3132 const char kOmniboxUIVerticalLayoutDescription[] = | 3138 const char kOmniboxUIVerticalLayoutDescription[] = |
3133 "Displays Omnibox sugestions in 2 lines - title over origin."; | 3139 "Displays Omnibox sugestions in 2 lines - title over origin."; |
3134 | 3140 |
3135 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; | 3141 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; |
3136 | 3142 |
3137 const char kOmniboxUIVerticalMarginDescription[] = | 3143 const char kOmniboxUIVerticalMarginDescription[] = |
3138 "Changes the vertical margin in the Omnibox UI."; | 3144 "Changes the vertical margin in the Omnibox UI."; |
3139 | 3145 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3216 | 3222 |
3217 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3223 const char kDisableNewVirtualKeyboardBehaviorName[] = |
3218 "New window behavior for the accessibility keyboard"; | 3224 "New window behavior for the accessibility keyboard"; |
3219 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3225 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
3220 "Disable new window behavior for the accessibility keyboard " | 3226 "Disable new window behavior for the accessibility keyboard " |
3221 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3227 "in non-sticky mode (do not change work area in non-sticky mode)."; |
3222 | 3228 |
3223 #endif // defined(OS_CHROMEOS) | 3229 #endif // defined(OS_CHROMEOS) |
3224 | 3230 |
3225 } // namespace flag_descriptions | 3231 } // namespace flag_descriptions |
OLD | NEW |