| 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 2831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2842 const char kEnableCustomFeedbackUiDescription[] = | 2842 const char kEnableCustomFeedbackUiDescription[] = |
| 2843 "Enables a custom feedback UI when submitting feedback through Google " | 2843 "Enables a custom feedback UI when submitting feedback through Google " |
| 2844 "Feedback. Works with Google Play Services v10.2+"; | 2844 "Feedback. Works with Google Play Services v10.2+"; |
| 2845 | 2845 |
| 2846 #endif // defined(OS_ANDROID) | 2846 #endif // defined(OS_ANDROID) |
| 2847 | 2847 |
| 2848 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ | 2848 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ |
| 2849 defined(OS_WIN) | 2849 defined(OS_WIN) |
| 2850 | 2850 |
| 2851 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; | 2851 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; |
| 2852 const char kOmniboxEntitySuggestionsDescription[] = |
| 2853 "Enable receiving entity suggestions - disambiguation descriptions - for " |
| 2854 "Omnibox suggestions."; |
| 2852 | 2855 |
| 2853 const char kOmniboxEntitySuggestionsDescription[] = | 2856 const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions"; |
| 2854 "Enable receiving entity suggestions in Omnibox."; | 2857 const char kOmniboxTailSuggestionsDescription[] = |
| 2858 "Enable receiving tail suggestions, a type of search suggestion " |
| 2859 "based on the last few words in the query, for the Omnibox."; |
| 2855 | 2860 |
| 2856 const char kPauseBackgroundTabsName[] = "Pause background tabs"; | 2861 const char kPauseBackgroundTabsName[] = "Pause background tabs"; |
| 2857 const char kPauseBackgroundTabsDescription[] = | 2862 const char kPauseBackgroundTabsDescription[] = |
| 2858 "Pause timers in background tabs after 5 minutes on desktop."; | 2863 "Pause timers in background tabs after 5 minutes on desktop."; |
| 2859 | 2864 |
| 2860 const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon"; | 2865 const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon"; |
| 2861 const char kEnableNewAppMenuIconDescription[] = | 2866 const char kEnableNewAppMenuIconDescription[] = |
| 2862 "Use the new app menu icon with update notification animations."; | 2867 "Use the new app menu icon with update notification animations."; |
| 2863 | 2868 |
| 2864 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || | 2869 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3220 | 3225 |
| 3221 const char kDisableNewVirtualKeyboardBehaviorName[] = | 3226 const char kDisableNewVirtualKeyboardBehaviorName[] = |
| 3222 "New window behavior for the accessibility keyboard"; | 3227 "New window behavior for the accessibility keyboard"; |
| 3223 const char kDisableNewVirtualKeyboardBehaviorDescription[] = | 3228 const char kDisableNewVirtualKeyboardBehaviorDescription[] = |
| 3224 "Disable new window behavior for the accessibility keyboard " | 3229 "Disable new window behavior for the accessibility keyboard " |
| 3225 "in non-sticky mode (do not change work area in non-sticky mode)."; | 3230 "in non-sticky mode (do not change work area in non-sticky mode)."; |
| 3226 | 3231 |
| 3227 #endif // defined(OS_CHROMEOS) | 3232 #endif // defined(OS_CHROMEOS) |
| 3228 | 3233 |
| 3229 } // namespace flag_descriptions | 3234 } // namespace flag_descriptions |
| OLD | NEW |