| 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 2198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 completeness signals to improve |
| 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 Loading... |
| 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_ |
| OLD | NEW |