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

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

Issue 2929113002: Enable spare RenderProcessHost to be preinitialized. (Closed)
Patch Set: rebase 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
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 3014 matching lines...) Expand 10 before | Expand all | Expand 10 after
3025 "In the event that the omnibox provides suggestions on-focus, the URL of " 3025 "In the event that the omnibox provides suggestions on-focus, the URL of "
3026 "the current page is provided as the first suggestion without a title. " 3026 "the current page is provided as the first suggestion without a title. "
3027 "Enabling this flag causes the title to be displayed."; 3027 "Enabling this flag causes the title to be displayed.";
3028 3028
3029 const char kOmniboxUIElideSuggestionUrlAfterHostName[] = 3029 const char kOmniboxUIElideSuggestionUrlAfterHostName[] =
3030 "Omnibox UI Elide Suggestion URL After Host"; 3030 "Omnibox UI Elide Suggestion URL After Host";
3031 const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] = 3031 const char kOmniboxUIElideSuggestionUrlAfterHostDescription[] =
3032 "Elides the path, query, and ref of suggested URLs in the Omnibox " 3032 "Elides the path, query, and ref of suggested URLs in the Omnibox "
3033 "dropdown."; 3033 "dropdown.";
3034 3034
3035 const char kOmniboxSpareRendererName[] =
3036 "Start spare renderer on omnibox focus";
3037 const char kOmniboxSpareRendererDescription[] =
3038 "When the omnibox is focused, start an empty spare renderer. This can "
3039 "speed up the load of the navigation from the omnibox.";
3040
3035 const char kOmniboxUIHideSuggestionUrlSchemeName[] = 3041 const char kOmniboxUIHideSuggestionUrlSchemeName[] =
3036 "Omnibox UI Hide Suggestion URL Scheme"; 3042 "Omnibox UI Hide Suggestion URL Scheme";
3037 const char kOmniboxUIHideSuggestionUrlSchemeDescription[] = 3043 const char kOmniboxUIHideSuggestionUrlSchemeDescription[] =
3038 "Elides the schemes of suggested URLs in the Omnibox dropdown."; 3044 "Elides the schemes of suggested URLs in the Omnibox dropdown.";
3039 3045
3040 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] = 3046 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[] =
3041 "Omnibox UI Hide Suggestion URL Trivial Subdomains"; 3047 "Omnibox UI Hide Suggestion URL Trivial Subdomains";
3042 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] = 3048 const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[] =
3043 "Elides trivially informative subdomains from suggested URLs in the " 3049 "Elides trivially informative subdomains from suggested URLs in the "
3044 "Omnibox dropdown (e.g. www. and m.)."; 3050 "Omnibox dropdown (e.g. www. and m.).";
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
3150 #if defined(OS_ANDROID) 3156 #if defined(OS_ANDROID)
3151 3157
3152 const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete"; 3158 const char kSpannableInlineAutocompleteName[] = "Spannable inline autocomplete";
3153 const char kSpannableInlineAutocompleteDescription[] = 3159 const char kSpannableInlineAutocompleteDescription[] =
3154 "A new type of inline autocomplete for the omnibox that works with " 3160 "A new type of inline autocomplete for the omnibox that works with "
3155 "keyboards that compose text."; 3161 "keyboards that compose text.";
3156 3162
3157 #endif // defined(OS_ANDROID) 3163 #endif // defined(OS_ANDROID)
3158 3164
3159 } // namespace flag_descriptions 3165 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698