| 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 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1211 // same as if the script is in HTTPCache; force caching on the first load. This | 1211 // same as if the script is in HTTPCache; force caching on the first load. This |
| 1212 // option describes the 2nd of these, caching same as if the script is in | 1212 // option describes the 2nd of these, caching same as if the script is in |
| 1213 // HTTPCache. | 1213 // HTTPCache. |
| 1214 extern const char kV8CacheStrategiesForCacheStorageNormal[]; | 1214 extern const char kV8CacheStrategiesForCacheStorageNormal[]; |
| 1215 | 1215 |
| 1216 // The V8 cache for CacheStorage supports three strategies: disabled; caching | 1216 // The V8 cache for CacheStorage supports three strategies: disabled; caching |
| 1217 // same as if the script is in HTTPCache; force caching on the first load. This | 1217 // same as if the script is in HTTPCache; force caching on the first load. This |
| 1218 // option describes the 3rd of these, force caching on the first load. | 1218 // option describes the 3rd of these, force caching on the first load. |
| 1219 extern const char kV8CacheStrategiesForCacheStorageAggressive[]; | 1219 extern const char kV8CacheStrategiesForCacheStorageAggressive[]; |
| 1220 | 1220 |
| 1221 // Name of the about::flags setting for speculative launch of service workers. | |
| 1222 extern const char kSpeculativeLaunchServiceWorkerName[]; | |
| 1223 | |
| 1224 // Description of the about::flags setting for speculative launch of service | |
| 1225 // workers. | |
| 1226 extern const char kSpeculativeLaunchServiceWorkerDescription[]; | |
| 1227 | |
| 1228 // An about::flags experiment title to enable/disable memory coordinator | 1221 // An about::flags experiment title to enable/disable memory coordinator |
| 1229 extern const char kMemoryCoordinatorName[]; | 1222 extern const char kMemoryCoordinatorName[]; |
| 1230 | 1223 |
| 1231 // Description of an about::flags to enable/disable memory coordinator | 1224 // Description of an about::flags to enable/disable memory coordinator |
| 1232 extern const char kMemoryCoordinatorDescription[]; | 1225 extern const char kMemoryCoordinatorDescription[]; |
| 1233 | 1226 |
| 1234 // Name of the about::flags setting for service worker navigation preload. | 1227 // Name of the about::flags setting for service worker navigation preload. |
| 1235 extern const char kServiceWorkerNavigationPreloadName[]; | 1228 extern const char kServiceWorkerNavigationPreloadName[]; |
| 1236 | 1229 |
| 1237 // Description of the about::flags setting for service worker navigation | 1230 // Description of the about::flags setting for service worker navigation |
| (...skipping 1909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3147 | 3140 |
| 3148 // Description of the about: flag enabling emoji, handwriting and voice input on | 3141 // Description of the about: flag enabling emoji, handwriting and voice input on |
| 3149 // opt-in IME menu. | 3142 // opt-in IME menu. |
| 3150 extern const char kEnableEhvInputDescription[]; | 3143 extern const char kEnableEhvInputDescription[]; |
| 3151 | 3144 |
| 3152 #endif // #if defined(OS_CHROMEOS) | 3145 #endif // #if defined(OS_CHROMEOS) |
| 3153 | 3146 |
| 3154 } // namespace flag_descriptions | 3147 } // namespace flag_descriptions |
| 3155 | 3148 |
| 3156 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3149 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |