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 3083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3094 "the current page is provided as the first suggestion without a title. " | 3094 "the current page is provided as the first suggestion without a title. " |
3095 "Enabling this flag causes the title to be displayed."; | 3095 "Enabling this flag causes the title to be displayed."; |
3096 | 3096 |
3097 const char kOmniboxUIMaxAutocompleteMatchesName[] = | 3097 const char kOmniboxUIMaxAutocompleteMatchesName[] = |
3098 "Omnibox UI Max Autocomplete Matches"; | 3098 "Omnibox UI Max Autocomplete Matches"; |
3099 | 3099 |
3100 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = | 3100 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = |
3101 "Changes the maximum number af autocomplete matches displayed in the " | 3101 "Changes the maximum number af autocomplete matches displayed in the " |
3102 "Omnibox UI."; | 3102 "Omnibox UI."; |
3103 | 3103 |
| 3104 const char kOmniboxUIVerticalLayoutName[] = "Omnibox UI Vertical Layout"; |
| 3105 |
| 3106 const char kOmniboxUIVerticalLayoutDescription[] = |
| 3107 "Displays Omnibox sugestions in 2 lines - title over origin."; |
| 3108 |
3104 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; | 3109 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; |
3105 | 3110 |
3106 const char kOmniboxUIVerticalMarginDescription[] = | 3111 const char kOmniboxUIVerticalMarginDescription[] = |
3107 "Changes the vertical margin in the Omnibox UI."; | 3112 "Changes the vertical margin in the Omnibox UI."; |
3108 | 3113 |
3109 const char kForceEffectiveConnectionTypeName[] = | 3114 const char kForceEffectiveConnectionTypeName[] = |
3110 "Override effective connection type"; | 3115 "Override effective connection type"; |
3111 | 3116 |
3112 const char kForceEffectiveConnectionTypeDescription[] = | 3117 const char kForceEffectiveConnectionTypeDescription[] = |
3113 "Overrides the effective connection type of the current connection " | 3118 "Overrides the effective connection type of the current connection " |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3185 | 3190 |
3186 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3191 const char kDisableNewVirtualKeyboardBehaviorName[] = |
3187 "New window behavior for the accessibility keyboard"; | 3192 "New window behavior for the accessibility keyboard"; |
3188 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3193 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
3189 "Disable new window behavior for the accessibility keyboard " | 3194 "Disable new window behavior for the accessibility keyboard " |
3190 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3195 "in non-sticky mode (do not change work area in non-sticky mode)."; |
3191 | 3196 |
3192 #endif // defined(OS_CHROMEOS) | 3197 #endif // defined(OS_CHROMEOS) |
3193 | 3198 |
3194 } // namespace flag_descriptions | 3199 } // namespace flag_descriptions |
OLD | NEW |