| 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 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 // Description of an about::flags to enable/disable memory coordinator | 1231 // Description of an about::flags to enable/disable memory coordinator |
| 1232 extern const char kMemoryCoordinatorDescription[]; | 1232 extern const char kMemoryCoordinatorDescription[]; |
| 1233 | 1233 |
| 1234 // Name of the about::flags setting for service worker navigation preload. | 1234 // Name of the about::flags setting for service worker navigation preload. |
| 1235 extern const char kServiceWorkerNavigationPreloadName[]; | 1235 extern const char kServiceWorkerNavigationPreloadName[]; |
| 1236 | 1236 |
| 1237 // Description of the about::flags setting for service worker navigation | 1237 // Description of the about::flags setting for service worker navigation |
| 1238 // preload. | 1238 // preload. |
| 1239 extern const char kServiceWorkerNavigationPreloadDescription[]; | 1239 extern const char kServiceWorkerNavigationPreloadDescription[]; |
| 1240 | 1240 |
| 1241 #if defined(OS_ANDROID) | |
| 1242 | |
| 1243 // Name of chrome:flags option to use the JobScheduler API for uploading crash | |
| 1244 // reports. | |
| 1245 extern const char kUploadCrashReportsUsingJobSchedulerName[]; | |
| 1246 | |
| 1247 // Description of chrome:flags option to use the JobScheduler API for uploading | |
| 1248 // crash reports. | |
| 1249 extern const char kUploadCrashReportsUsingJobSchedulerDescription[]; | |
| 1250 | |
| 1251 #endif // defined(OS_ANDROID) | |
| 1252 | |
| 1253 // Data Reduction Proxy | 1241 // Data Reduction Proxy |
| 1254 | 1242 |
| 1255 // An about:flags experiment title to enable/disable Data Saver Lo-Fi | 1243 // An about:flags experiment title to enable/disable Data Saver Lo-Fi |
| 1256 extern const char kDataReductionProxyLoFiName[]; | 1244 extern const char kDataReductionProxyLoFiName[]; |
| 1257 | 1245 |
| 1258 // Describes an about:flags experiment to enable/disable Data Saver Lo-Fi | 1246 // Describes an about:flags experiment to enable/disable Data Saver Lo-Fi |
| 1259 extern const char kDataReductionProxyLoFiDescription[]; | 1247 extern const char kDataReductionProxyLoFiDescription[]; |
| 1260 | 1248 |
| 1261 // Option for IDS_FLAGS_DATA_REDUCTION_PROXY_LO_FI_NAME to enable Lo-Fi always | 1249 // Option for IDS_FLAGS_DATA_REDUCTION_PROXY_LO_FI_NAME to enable Lo-Fi always |
| 1262 // on | 1250 // on |
| (...skipping 1884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3147 | 3135 |
| 3148 // Description of the about: flag enabling emoji, handwriting and voice input on | 3136 // Description of the about: flag enabling emoji, handwriting and voice input on |
| 3149 // opt-in IME menu. | 3137 // opt-in IME menu. |
| 3150 extern const char kEnableEhvInputDescription[]; | 3138 extern const char kEnableEhvInputDescription[]; |
| 3151 | 3139 |
| 3152 #endif // #if defined(OS_CHROMEOS) | 3140 #endif // #if defined(OS_CHROMEOS) |
| 3153 | 3141 |
| 3154 } // namespace flag_descriptions | 3142 } // namespace flag_descriptions |
| 3155 | 3143 |
| 3156 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3144 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |