| 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 3080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3091 "Document user activation is required."; | 3091 "Document user activation is required."; |
| 3092 | 3092 |
| 3093 const char kOmniboxDisplayTitleForCurrentUrlName[] = | 3093 const char kOmniboxDisplayTitleForCurrentUrlName[] = |
| 3094 "Include title for the current URL in the omnibox"; | 3094 "Include title for the current URL in the omnibox"; |
| 3095 | 3095 |
| 3096 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = | 3096 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = |
| 3097 "In the event that the omnibox provides suggestions on-focus, the URL of " | 3097 "In the event that the omnibox provides suggestions on-focus, the URL of " |
| 3098 "the current page is provided as the first suggestion without a title. " | 3098 "the current page is provided as the first suggestion without a title. " |
| 3099 "Enabling this flag causes the title to be displayed."; | 3099 "Enabling this flag causes the title to be displayed."; |
| 3100 | 3100 |
| 3101 const char kOmniboxUIHideSuggestionUrlPathName[] = | 3101 const char kOmniboxUIElideSuggestionUrlAfterHostName[] = |
| 3102 "Omnibox UI Hide Suggestion URL Path"; | 3102 "Omnibox UI Elide Suggestion URL After Host"; |
| 3103 const char kOmniboxUIHideSuggestionUrlPathDescription[] = | 3103 const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] = |
| 3104 "Elides the paths of suggested URLs in the Omnibox dropdown."; | 3104 "Elides the path, query, and ref of suggested URLs in the Omnibox " |
| 3105 "dropdown."; |
| 3105 | 3106 |
| 3106 const char kOmniboxUIHideSuggestionUrlSchemeName[] = | 3107 const char kOmniboxUIHideSuggestionUrlSchemeName[] = |
| 3107 "Omnibox UI Hide Suggestion URL Scheme"; | 3108 "Omnibox UI Hide Suggestion URL Scheme"; |
| 3108 const char kOmniboxUIHideSuggestionUrlSchemeDescription[] = | 3109 const char kOmniboxUIHideSuggestionUrlSchemeDescription[] = |
| 3109 "Elides the schemes of suggested URLs in the Omnibox dropdown."; | 3110 "Elides the schemes of suggested URLs in the Omnibox dropdown."; |
| 3110 | 3111 |
| 3111 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] = | 3112 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] = |
| 3112 "Omnibox UI Hide Suggestion URL Trivial Subdomains"; | 3113 "Omnibox UI Hide Suggestion URL Trivial Subdomains"; |
| 3113 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] = | 3114 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] = |
| 3114 "Elides trivially informative subdomains from suggested URLs in the " | 3115 "Elides trivially informative subdomains from suggested URLs in the " |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3233 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3234 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3234 | 3235 |
| 3235 const char kUiDevToolsName[] = "Enable native UI inspection"; | 3236 const char kUiDevToolsName[] = "Enable native UI inspection"; |
| 3236 const char kUiDevToolsDescription[] = | 3237 const char kUiDevToolsDescription[] = |
| 3237 "Enables inspection of native UI elements. For local inspection use " | 3238 "Enables inspection of native UI elements. For local inspection use " |
| 3238 "chrome://inspect#other"; | 3239 "chrome://inspect#other"; |
| 3239 | 3240 |
| 3240 #endif // defined(OS_CHROMEOS) | 3241 #endif // defined(OS_CHROMEOS) |
| 3241 | 3242 |
| 3242 } // namespace flag_descriptions | 3243 } // namespace flag_descriptions |
| OLD | NEW |