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

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

Issue 2799883002: [Not Ready To Comimt] Add chrome://flags/#enable-off-main-thread-fetch
Patch Set: Created 3 years, 8 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') | tools/metrics/histograms/histograms.xml » ('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 // Material Design version of chrome://bookmarks 9 // Material Design version of chrome://bookmarks
10 10
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 R"*(comparison purposes.)*"; 92 R"*(comparison purposes.)*";
93 93
94 const char kSpeculativePrefetchName[] = "Speculative Prefetch"; 94 const char kSpeculativePrefetchName[] = "Speculative Prefetch";
95 95
96 const char kSpeculativePrefetchDescription[] = 96 const char kSpeculativePrefetchDescription[] =
97 R"*("Speculative Prefetch" fetches likely resources early to improve )*" 97 R"*("Speculative Prefetch" fetches likely resources early to improve )*"
98 R"*(load times, based on a local database (see chrome://predictors). )*" 98 R"*(load times, based on a local database (see chrome://predictors). )*"
99 R"*("Learning" means that only the database construction is enabled, )*" 99 R"*("Learning" means that only the database construction is enabled, )*"
100 R"*("Prefetching" that learning and prefetching are enabled.)*"; 100 R"*("Prefetching" that learning and prefetching are enabled.)*";
101 101
102 const char kOffMainThreadFetchName[] =
103 "Experimental resource fetch optimizations for workers";
104
105 const char kOffMainThreadFetchDescription[] =
106 "If enabled, the resource fetch in worker threads will not be blocked by "
107 "the busy main thread.";
108
102 // Force Tablet Mode 109 // Force Tablet Mode
103 110
104 const char kForceTabletModeName[] = "Force Tablet Mode"; 111 const char kForceTabletModeName[] = "Force Tablet Mode";
105 112
106 const char kForceTabletModeDescription[] = 113 const char kForceTabletModeDescription[] =
107 R"*(This flag can be used to force a certain mode on to a chromebook, )*" 114 R"*(This flag can be used to force a certain mode on to a chromebook, )*"
108 R"*(despite its current orientation. "TouchView" means that the )*" 115 R"*(despite its current orientation. "TouchView" means that the )*"
109 R"*(chromebook will act as if it were in touch view mode. "Clamshell" )*" 116 R"*(chromebook will act as if it were in touch view mode. "Clamshell" )*"
110 R"*(means that the chromebook will act as if it were in clamshell )*" 117 R"*(means that the chromebook will act as if it were in clamshell )*"
111 R"*(mode . "Auto" means that the chromebook will alternate between )*" 118 R"*(mode . "Auto" means that the chromebook will alternate between )*"
(...skipping 2802 matching lines...) Expand 10 before | Expand all | Expand 10 after
2914 const char kEnableEhvInputName[] = 2921 const char kEnableEhvInputName[] =
2915 "Emoji, handwriting and voice input on opt-in IME menu"; 2922 "Emoji, handwriting and voice input on opt-in IME menu";
2916 2923
2917 const char kEnableEhvInputDescription[] = 2924 const char kEnableEhvInputDescription[] =
2918 "Enable access to emoji, handwriting and voice input form opt-in IME " 2925 "Enable access to emoji, handwriting and voice input form opt-in IME "
2919 "menu."; 2926 "menu.";
2920 2927
2921 #endif // #if defined(OS_CHROMEOS) 2928 #endif // #if defined(OS_CHROMEOS)
2922 2929
2923 } // namespace flag_descriptions 2930 } // namespace flag_descriptions
OLDNEW
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698