| OLD | NEW |
| 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 2242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2253 extern const char kOfflinePagesAsyncDownloadDescription[]; | 2253 extern const char kOfflinePagesAsyncDownloadDescription[]; |
| 2254 | 2254 |
| 2255 // Name for the flag to enable concurrent background loading on svelte (512MB | 2255 // Name for the flag to enable concurrent background loading on svelte (512MB |
| 2256 // RAM) devices. | 2256 // RAM) devices. |
| 2257 extern const char kOfflinePagesSvelteConcurrentLoadingName[]; | 2257 extern const char kOfflinePagesSvelteConcurrentLoadingName[]; |
| 2258 | 2258 |
| 2259 // Description for the flag to enable concurrent background loading on svelte | 2259 // Description for the flag to enable concurrent background loading on svelte |
| 2260 // (512MB RAM) devices. | 2260 // (512MB RAM) devices. |
| 2261 extern const char kOfflinePagesSvelteConcurrentLoadingDescription[]; | 2261 extern const char kOfflinePagesSvelteConcurrentLoadingDescription[]; |
| 2262 | 2262 |
| 2263 // Name for the flag to enable collecting load completeness signals to improve |
| 2264 // prerendering snapshot timing. |
| 2265 extern const char kOfflinePagesLoadSignalCollectingName[]; |
| 2266 |
| 2267 // Description for the flag to enable collecting load timing signals to improve |
| 2268 // prerendering snapshot timing. |
| 2269 extern const char kOfflinePagesLoadSignalCollectingDescription[]; |
| 2270 |
| 2263 // Name for the flag to enable offline pages to be prefetched. | 2271 // Name for the flag to enable offline pages to be prefetched. |
| 2264 extern const char kOfflinePagesPrefetchingName[]; | 2272 extern const char kOfflinePagesPrefetchingName[]; |
| 2265 | 2273 |
| 2266 // Description for the flag to enable offline pages prefetching. | 2274 // Description for the flag to enable offline pages prefetching. |
| 2267 extern const char kOfflinePagesPrefetchingDescription[]; | 2275 extern const char kOfflinePagesPrefetchingDescription[]; |
| 2268 | 2276 |
| 2269 // Name for the flag to enable offline pages to be shared. | 2277 // Name for the flag to enable offline pages to be shared. |
| 2270 extern const char kOfflinePagesSharingName[]; | 2278 extern const char kOfflinePagesSharingName[]; |
| 2271 | 2279 |
| 2272 // Description for the flag to enable offline pages sharing. | 2280 // Description for the flag to enable offline pages sharing. |
| (...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3206 extern const char kEnableCopylessPasteName[]; | 3214 extern const char kEnableCopylessPasteName[]; |
| 3207 | 3215 |
| 3208 // Description of the flag that enables Copyless Paste. | 3216 // Description of the flag that enables Copyless Paste. |
| 3209 extern const char kEnableCopylessPasteDescription[]; | 3217 extern const char kEnableCopylessPasteDescription[]; |
| 3210 | 3218 |
| 3211 #endif // defined(OS_ANDROID) | 3219 #endif // defined(OS_ANDROID) |
| 3212 | 3220 |
| 3213 } // namespace flag_descriptions | 3221 } // namespace flag_descriptions |
| 3214 | 3222 |
| 3215 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3223 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |