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

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

Issue 2701753003: [WIP] off-main-thread loading
Patch Set: small fix 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
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 2821 matching lines...) Expand 10 before | Expand all | Expand 10 after
2933 const char kEnableEhvInputName[] = 2940 const char kEnableEhvInputName[] =
2934 "Emoji, handwriting and voice input on opt-in IME menu"; 2941 "Emoji, handwriting and voice input on opt-in IME menu";
2935 2942
2936 const char kEnableEhvInputDescription[] = 2943 const char kEnableEhvInputDescription[] =
2937 "Enable access to emoji, handwriting and voice input form opt-in IME " 2944 "Enable access to emoji, handwriting and voice input form opt-in IME "
2938 "menu."; 2945 "menu.";
2939 2946
2940 #endif // #if defined(OS_CHROMEOS) 2947 #endif // #if defined(OS_CHROMEOS)
2941 2948
2942 } // namespace flag_descriptions 2949 } // namespace flag_descriptions
OLDNEW
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698