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

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

Issue 2889823002: [omnibox] Added 'OmniboxTailSuggestions' flag (Closed)
Patch Set: Added histogram enumeration 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
2843 const char kOmniboxEntitySuggestionsDescription[] = 2842 const char kOmniboxEntitySuggestionsDescription[] =
2844 "Enable receiving entity suggestions in Omnibox."; 2843 "Enable receiving entity suggestions in Omnibox.";
2845 2844
2845 const char kOmniboxTailSuggestionsName[] = "Omnibox tail suggestions";
2846 const char kOmniboxTailSuggestionsDescription[] =
2847 "Enable receiving tail suggestions in Omnibox.";
Mark P 2017/05/31 23:17:13 The meaning of "tail suggestions" is not obvious.
Kevin Bailey 2017/06/01 14:32:42 I was duplicating 'entity suggestions'. I assume i
Mark P 2017/06/01 16:23:58 Acknowledged.
2848
2846 const char kPauseBackgroundTabsName[] = "Pause background tabs"; 2849 const char kPauseBackgroundTabsName[] = "Pause background tabs";
2847 const char kPauseBackgroundTabsDescription[] = 2850 const char kPauseBackgroundTabsDescription[] =
2848 "Pause timers in background tabs after 5 minutes on desktop."; 2851 "Pause timers in background tabs after 5 minutes on desktop.";
2849 2852
2850 const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon"; 2853 const char kEnableNewAppMenuIconName[] = "Enable the New App Menu Icon";
2851 const char kEnableNewAppMenuIconDescription[] = 2854 const char kEnableNewAppMenuIconDescription[] =
2852 "Use the new app menu icon with update notification animations."; 2855 "Use the new app menu icon with update notification animations.";
2853 2856
2854 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || 2857 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) ||
2855 // defined(OS_WIN) 2858 // defined(OS_WIN)
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
3216 3219
3217 const char kDisableNewVirtualKeyboardBehaviorName[] = 3220 const char kDisableNewVirtualKeyboardBehaviorName[] =
3218 "New window behavior for the accessibility keyboard"; 3221 "New window behavior for the accessibility keyboard";
3219 const char kDisableNewVirtualKeyboardBehaviorDescription[] = 3222 const char kDisableNewVirtualKeyboardBehaviorDescription[] =
3220 "Disable new window behavior for the accessibility keyboard " 3223 "Disable new window behavior for the accessibility keyboard "
3221 "in non-sticky mode (do not change work area in non-sticky mode)."; 3224 "in non-sticky mode (do not change work area in non-sticky mode).";
3222 3225
3223 #endif // defined(OS_CHROMEOS) 3226 #endif // defined(OS_CHROMEOS)
3224 3227
3225 } // namespace flag_descriptions 3228 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698