Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2889823002: [omnibox] Added 'OmniboxTailSuggestions' flag (Closed)
Patch Set: Changed string descriptions Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 - disambiguation descriptions - for "
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, a type of search suggestion "
2849 "based on the last few words in the query, for the Omnibox.";
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698