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

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

Issue 2929113002: Enable spare RenderProcessHost to be preinitialized. (Closed)
Patch Set: Change creation of storage partition to not break unittests with subtle threading issues Created 3 years, 5 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
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | content/browser/browser_context.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas"; 9 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas";
10 const char kAccelerated2dCanvasDescription[] = 10 const char kAccelerated2dCanvasDescription[] =
(...skipping 3028 matching lines...) Expand 10 before | Expand all | Expand 10 after
3039 "In the event that the omnibox provides suggestions on-focus, the URL of " 3039 "In the event that the omnibox provides suggestions on-focus, the URL of "
3040 "the current page is provided as the first suggestion without a title. " 3040 "the current page is provided as the first suggestion without a title. "
3041 "Enabling this flag causes the title to be displayed."; 3041 "Enabling this flag causes the title to be displayed.";
3042 3042
3043 const char kOmniboxUIElideSuggestionUrlAfterHostName[] = 3043 const char kOmniboxUIElideSuggestionUrlAfterHostName[] =
3044 "Omnibox UI Elide Suggestion URL After Host"; 3044 "Omnibox UI Elide Suggestion URL After Host";
3045 const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] = 3045 const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] =
3046 "Elides the path, query, and ref of suggested URLs in the Omnibox " 3046 "Elides the path, query, and ref of suggested URLs in the Omnibox "
3047 "dropdown."; 3047 "dropdown.";
3048 3048
3049 const char kOmniboxSpareRendererName[] =
3050 "Start spare renderer on omnibox focus";
3051 const char kOmniboxSpareRendererDescription[] =
3052 "When the omnibox is focused, start an empty spare renderer. This can "
3053 "speed up the load of the navigation from the omnibox.";
3054
3049 const char kOmniboxUIHideSuggestionUrlSchemeName[] = 3055 const char kOmniboxUIHideSuggestionUrlSchemeName[] =
3050 "Omnibox UI Hide Suggestion URL Scheme"; 3056 "Omnibox UI Hide Suggestion URL Scheme";
3051 const char kOmniboxUIHideSuggestionUrlSchemeDescription[] = 3057 const char kOmniboxUIHideSuggestionUrlSchemeDescription[] =
3052 "Elides the schemes of suggested URLs in the Omnibox dropdown."; 3058 "Elides the schemes of suggested URLs in the Omnibox dropdown.";
3053 3059
3054 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] = 3060 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] =
3055 "Omnibox UI Hide Suggestion URL Trivial Subdomains"; 3061 "Omnibox UI Hide Suggestion URL Trivial Subdomains";
3056 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] = 3062 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] =
3057 "Elides trivially informative subdomains from suggested URLs in the " 3063 "Elides trivially informative subdomains from suggested URLs in the "
3058 "Omnibox dropdown (e.g. www. and m.)."; 3064 "Omnibox dropdown (e.g. www. and m.).";
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
3164 #if defined(OS_ANDROID) 3170 #if defined(OS_ANDROID)
3165 3171
3166 const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete"; 3172 const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete";
3167 const char kSpannableInlineAutocompleteDescription[] = 3173 const char kSpannableInlineAutocompleteDescription[] =
3168 "A new type of inline autocomplete for the omnibox that works with " 3174 "A new type of inline autocomplete for the omnibox that works with "
3169 "keyboards that compose text."; 3175 "keyboards that compose text.";
3170 3176
3171 #endif // defined(OS_ANDROID) 3177 #endif // defined(OS_ANDROID)
3172 3178
3173 } // namespace flag_descriptions 3179 } // namespace flag_descriptions
OLDNEW
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | content/browser/browser_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698