Chromium Code Reviews| 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 2821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2832 const char kEnableCustomFeedbackUiDescription[] = | 2832 const char kEnableCustomFeedbackUiDescription[] = |
| 2833 "Enables a custom feedback UI when submitting feedback through Google " | 2833 "Enables a custom feedback UI when submitting feedback through Google " |
| 2834 "Feedback. Works with Google Play Services v10.2+"; | 2834 "Feedback. Works with Google Play Services v10.2+"; |
| 2835 | 2835 |
| 2836 #endif // defined(OS_ANDROID) | 2836 #endif // defined(OS_ANDROID) |
| 2837 | 2837 |
| 2838 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ | 2838 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ |
| 2839 defined(OS_WIN) | 2839 defined(OS_WIN) |
| 2840 | 2840 |
| 2841 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; | 2841 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; |
| 2842 const char kOmniboxEntitySuggestionsDescription[] = | |
| 2843 "Enable receiving entity suggestions - unambiguation descriptions - for " | |
|
Mark P
2017/06/01 16:23:58
nit: I think the word you are looking for is "disa
Kevin Bailey
2017/06/01 17:11:03
Yes, thanks.
| |
| 2844 "Omnibox suggestions."; | |
| 2842 | 2845 |
| 2843 const char kOmniboxEntitySuggestionsDescription[] = | 2846 const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions"; |
| 2844 "Enable receiving entity suggestions in Omnibox."; | 2847 const char kOmniboxTailSuggestionsDescription[] = |
| 2848 "Enable receiving tail suggestions, an additional type of search " | |
| 2849 "suggestion, for Omnibox queries."; | |
|
Mark P
2017/06/01 16:23:58
"an additional type of search suggestion" is prett
Kevin Bailey
2017/06/01 17:11:03
Ok, but I think these descriptions are more for ru
| |
| 2845 | 2850 |
| 2846 const char kPauseBackgroundTabsName[] = "Pause background tabs"; | 2851 const char kPauseBackgroundTabsName[] = "Pause background tabs"; |
| 2847 const char kPauseBackgroundTabsDescription[] = | 2852 const char kPauseBackgroundTabsDescription[] = |
| 2848 "Pause timers in background tabs after 5 minutes on desktop."; | 2853 "Pause timers in background tabs after 5 minutes on desktop."; |
| 2849 | 2854 |
| 2850 const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon"; | 2855 const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon"; |
| 2851 const char kEnableNewAppMenuIconDescription[] = | 2856 const char kEnableNewAppMenuIconDescription[] = |
| 2852 "Use the new app menu icon with update notification animations."; | 2857 "Use the new app menu icon with update notification animations."; |
| 2853 | 2858 |
| 2854 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || | 2859 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3216 | 3221 |
| 3217 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3222 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3218 "New window behavior for the accessibility keyboard"; | 3223 "New window behavior for the accessibility keyboard"; |
| 3219 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3224 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3220 "Disable new window behavior for the accessibility keyboard " | 3225 "Disable new window behavior for the accessibility keyboard " |
| 3221 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3226 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3222 | 3227 |
| 3223 #endif // defined(OS_CHROMEOS) | 3228 #endif // defined(OS_CHROMEOS) |
| 3224 | 3229 |
| 3225 } // namespace flag_descriptions | 3230 } // namespace flag_descriptions |
| OLD | NEW |