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

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

Issue 2683493002: Get signals working in the EXTRA_DATA section of MHTML (Closed)
Patch Set: Dimich and DTrainor CR fixes 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
7 7
8 // Includes needed for macros allowing conditional compilation of some strings. 8 // Includes needed for macros allowing conditional compilation of some strings.
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "build/buildflag.h" 10 #include "build/buildflag.h"
(...skipping 2198 matching lines...) Expand 10 before | Expand all | Expand 10 after
2209 extern const char kOfflinePagesAsyncDownloadDescription[]; 2209 extern const char kOfflinePagesAsyncDownloadDescription[];
2210 2210
2211 // Name for the flag to enable concurrent background loading on svelte (512MB 2211 // Name for the flag to enable concurrent background loading on svelte (512MB
2212 // RAM) devices. 2212 // RAM) devices.
2213 extern const char kOfflinePagesSvelteConcurrentLoadingName[]; 2213 extern const char kOfflinePagesSvelteConcurrentLoadingName[];
2214 2214
2215 // Description for the flag to enable concurrent background loading on svelte 2215 // Description for the flag to enable concurrent background loading on svelte
2216 // (512MB RAM) devices. 2216 // (512MB RAM) devices.
2217 extern const char kOfflinePagesSvelteConcurrentLoadingDescription[]; 2217 extern const char kOfflinePagesSvelteConcurrentLoadingDescription[];
2218 2218
2219 // Name for the flag to enable collecting load timing signals to improve
Dmitry Titov 2017/03/31 18:05:53 Unclear sentence... The signals will not only be
Pete Williamson 2017/03/31 21:58:04 Changed "load timing" to "load completeness"
2220 // prerendering snapshot timing.
2221 extern const char kOfflinePagesLoadSignalCollectingName[];
2222
2223 // Description for the flag to enable collecting load timing signals to improve
2224 // prerendering snapshot timing.
2225 extern const char kOfflinePagesLoadSignalCollectingDescription[];
2226
2219 // Name for the flag to enable offline pages to be prefetched. 2227 // Name for the flag to enable offline pages to be prefetched.
2220 extern const char kOfflinePagesPrefetchingName[]; 2228 extern const char kOfflinePagesPrefetchingName[];
2221 2229
2222 // Description for the flag to enable offline pages prefetching. 2230 // Description for the flag to enable offline pages prefetching.
2223 extern const char kOfflinePagesPrefetchingDescription[]; 2231 extern const char kOfflinePagesPrefetchingDescription[];
2224 2232
2225 // Name for the flag to enable offline pages to be shared. 2233 // Name for the flag to enable offline pages to be shared.
2226 extern const char kOfflinePagesSharingName[]; 2234 extern const char kOfflinePagesSharingName[];
2227 2235
2228 // Description for the flag to enable offline pages sharing. 2236 // Description for the flag to enable offline pages sharing.
(...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after
3128 3136
3129 // Description of the about: flag enabling emoji, handwriting and voice input on 3137 // Description of the about: flag enabling emoji, handwriting and voice input on
3130 // opt-in IME menu. 3138 // opt-in IME menu.
3131 extern const char kEnableEhvInputDescription[]; 3139 extern const char kEnableEhvInputDescription[];
3132 3140
3133 #endif // #if defined(OS_CHROMEOS) 3141 #endif // #if defined(OS_CHROMEOS)
3134 3142
3135 } // namespace flag_descriptions 3143 } // namespace flag_descriptions
3136 3144
3137 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3145 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698