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

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

Issue 2873423002: Omnibox UI Experiments: Add flag to change max autocomplete matches. (Closed)
Patch Set: format Created 3 years, 7 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 3069 matching lines...) Expand 10 before | Expand all | Expand 10 after
3080 "User gesture is required for cross-origin iframes."; 3080 "User gesture is required for cross-origin iframes.";
3081 3081
3082 const char kOmniboxDisplayTitleForCurrentUrlName[] = 3082 const char kOmniboxDisplayTitleForCurrentUrlName[] =
3083 "Include title for the current URL in the omnibox"; 3083 "Include title for the current URL in the omnibox";
3084 3084
3085 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = 3085 const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
3086 "In the event that the omnibox provides suggestions on-focus, the URL of " 3086 "In the event that the omnibox provides suggestions on-focus, the URL of "
3087 "the current page is provided as the first suggestion without a title. " 3087 "the current page is provided as the first suggestion without a title. "
3088 "Enabling this flag causes the title to be displayed."; 3088 "Enabling this flag causes the title to be displayed.";
3089 3089
3090 const char kOmniboxUIMaxAutocompleteMatchesName[] =
3091 "Omnibox UI Max Autocomplete Matches";
3092
3093 const char kOmniboxUIMaxAutocompleteMatchesDescription[] =
3094 "Changes the maximum number af autocomplete matches displayed in the "
3095 "Omnibox UI.";
3096
3090 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin"; 3097 const char kOmniboxUIVerticalMarginName[] = "Omnibox UI Vertical Margin";
3091 3098
3092 const char kOmniboxUIVerticalMarginDescription[] = 3099 const char kOmniboxUIVerticalMarginDescription[] =
3093 "Changes the vertical margin in the Omnibox UI."; 3100 "Changes the vertical margin in the Omnibox UI.";
3094 3101
3095 const char kForceEffectiveConnectionTypeName[] = 3102 const char kForceEffectiveConnectionTypeName[] =
3096 "Override effective connection type"; 3103 "Override effective connection type";
3097 3104
3098 const char kForceEffectiveConnectionTypeDescription[] = 3105 const char kForceEffectiveConnectionTypeDescription[] =
3099 "Overrides the effective connection type of the current connection " 3106 "Overrides the effective connection type of the current connection "
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
3131 "hard-reload."; 3138 "hard-reload.";
3132 3139
3133 const char kCaptureThumbnailOnLoadFinishedName[] = 3140 const char kCaptureThumbnailOnLoadFinishedName[] =
3134 "Capture page thumbnail on load finished"; 3141 "Capture page thumbnail on load finished";
3135 3142
3136 const char kCaptureThumbnailOnLoadFinishedDescription[] = 3143 const char kCaptureThumbnailOnLoadFinishedDescription[] =
3137 "Capture a page thumbnail (for use on the New Tab page) when the page load " 3144 "Capture a page thumbnail (for use on the New Tab page) when the page load "
3138 "finishes, in addition to other times a thumbnail may be captured."; 3145 "finishes, in addition to other times a thumbnail may be captured.";
3139 3146
3140 } // namespace flag_descriptions 3147 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698