| 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 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; | 9 const char kBrowserSideNavigationName[] = "Enable browser side navigation"; |
| 10 | 10 |
| (...skipping 3072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3083 "Document user activation is required."; | 3083 "Document user activation is required."; |
| 3084 | 3084 |
| 3085 const char kOmniboxDisplayTitleForCurrentUrlName[] = | 3085 const char kOmniboxDisplayTitleForCurrentUrlName[] = |
| 3086 "Include title for the current URL in the omnibox"; | 3086 "Include title for the current URL in the omnibox"; |
| 3087 | 3087 |
| 3088 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = | 3088 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
| 3089 "In the event that the omnibox provides suggestions on-focus, the URL of " | 3089 "In the event that the omnibox provides suggestions on-focus, the URL of " |
| 3090 "the current page is provided as the first suggestion without a title. " | 3090 "the current page is provided as the first suggestion without a title. " |
| 3091 "Enabling this flag causes the title to be displayed."; | 3091 "Enabling this flag causes the title to be displayed."; |
| 3092 | 3092 |
| 3093 const char kOmniboxUIHideSuggestionUrlPathName[] = |
| 3094 "Omnibox UI Hide Suggestion URL Path"; |
| 3095 const char kOmniboxUIHideSuggestionUrlPathDescription[] = |
| 3096 "Elides the paths of suggested URLs in the Omnibox dropdown."; |
| 3097 |
| 3098 const char kOmniboxUIHideSuggestionUrlSchemeName[] = |
| 3099 "Omnibox UI Hide Suggestion URL Scheme"; |
| 3100 const char kOmniboxUIHideSuggestionUrlSchemeDescription[] = |
| 3101 "Elides the schemes of suggested URLs in the Omnibox dropdown."; |
| 3102 |
| 3103 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] = |
| 3104 "Omnibox UI Hide Suggestion URL Trivial Subdomains"; |
| 3105 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] = |
| 3106 "Elides trivially informative subdomains from suggested URLs in the " |
| 3107 "Omnibox dropdown (e.g. www. and m.)."; |
| 3108 |
| 3093 const char kOmniboxUIMaxAutocompleteMatchesName[] = | 3109 const char kOmniboxUIMaxAutocompleteMatchesName[] = |
| 3094 "Omnibox UI Max Autocomplete Matches"; | 3110 "Omnibox UI Max Autocomplete Matches"; |
| 3095 | 3111 |
| 3096 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = | 3112 const char kOmniboxUIMaxAutocompleteMatchesDescription[] = |
| 3097 "Changes the maximum number of autocomplete matches displayed in the " | 3113 "Changes the maximum number of autocomplete matches displayed in the " |
| 3098 "Omnibox UI."; | 3114 "Omnibox UI."; |
| 3099 | 3115 |
| 3100 const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown"; | 3116 const char kOmniboxUINarrowDropdownName[] = "Omnibox UI Narrow Dropdown"; |
| 3101 | 3117 |
| 3102 const char kOmniboxUINarrowDropdownDescription[] = | 3118 const char kOmniboxUINarrowDropdownDescription[] = |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3206 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3222 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3207 | 3223 |
| 3208 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3224 const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 3209 const char kUiDevToolsDescription[] = | 3225 const char kUiDevToolsDescription[] = |
| 3210 "Enables inspection of native UI elements. For local inspection use " | 3226 "Enables inspection of native UI elements. For local inspection use " |
| 3211 "chrome://inspect#other"; | 3227 "chrome://inspect#other"; |
| 3212 | 3228 |
| 3213 #endif // defined(OS_CHROMEOS) | 3229 #endif // defined(OS_CHROMEOS) |
| 3214 | 3230 |
| 3215 } // namespace flag_descriptions | 3231 } // namespace flag_descriptions |
| OLD | NEW |