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

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

Issue 2807533003: [WIP2] off-main-thread loading
Patch Set: call set_is_secure_context in EmbeddedSharedWorkerStub::CreateWorkerFetchContext() 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 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 2924 matching lines...) Expand 10 before | Expand all | Expand 10 after
3036 3043
3037 const char kOmniboxDisplayTitleForCurrentUrlName[] = 3044 const char kOmniboxDisplayTitleForCurrentUrlName[] =
3038 "Include title for the current URL in the omnibox"; 3045 "Include title for the current URL in the omnibox";
3039 3046
3040 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = 3047 const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
3041 "In the event that the omnibox provides suggestions on-focus, the URL of " 3048 "In the event that the omnibox provides suggestions on-focus, the URL of "
3042 "the current page is provided as the first suggestion without a title. " 3049 "the current page is provided as the first suggestion without a title. "
3043 "Enabling this flag causes the title to be displayed."; 3050 "Enabling this flag causes the title to be displayed.";
3044 3051
3045 } // namespace flag_descriptions 3052 } // namespace flag_descriptions
OLDNEW
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | content/child/appcache/web_application_cache_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698