| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 extern const char kEnableBrotliName[]; | 182 extern const char kEnableBrotliName[]; |
| 183 extern const char kEnableBrotliDescription[]; | 183 extern const char kEnableBrotliDescription[]; |
| 184 | 184 |
| 185 extern const char kEnableClearBrowsingDataCountersName[]; | 185 extern const char kEnableClearBrowsingDataCountersName[]; |
| 186 extern const char kEnableClearBrowsingDataCountersDescription[]; | 186 extern const char kEnableClearBrowsingDataCountersDescription[]; |
| 187 | 187 |
| 188 extern const char kEnableDataReductionProxyLitePageName[]; | 188 extern const char kEnableDataReductionProxyLitePageName[]; |
| 189 extern const char kEnableDataReductionProxyLitePageDescription[]; | 189 extern const char kEnableDataReductionProxyLitePageDescription[]; |
| 190 | 190 |
| 191 extern const char kEnableDataReductionProxyAlternativeBackEndName[]; |
| 192 extern const char kEnableDataReductionProxyAlternativeBackEndDescription[]; |
| 193 |
| 191 extern const char kEnableDataReductionProxySavingsPromoName[]; | 194 extern const char kEnableDataReductionProxySavingsPromoName[]; |
| 192 extern const char kEnableDataReductionProxySavingsPromoDescription[]; | 195 extern const char kEnableDataReductionProxySavingsPromoDescription[]; |
| 193 | 196 |
| 194 extern const char kEnableEnumeratingAudioDevicesName[]; | 197 extern const char kEnableEnumeratingAudioDevicesName[]; |
| 195 extern const char kEnableEnumeratingAudioDevicesDescription[]; | 198 extern const char kEnableEnumeratingAudioDevicesDescription[]; |
| 196 | 199 |
| 197 extern const char kEnableGenericSensorName[]; | 200 extern const char kEnableGenericSensorName[]; |
| 198 extern const char kEnableGenericSensorDescription[]; | 201 extern const char kEnableGenericSensorDescription[]; |
| 199 | 202 |
| 200 extern const char kEnableGroupedHistoryName[]; | 203 extern const char kEnableGroupedHistoryName[]; |
| (...skipping 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1453 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1456 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1454 | 1457 |
| 1455 // ============================================================================ | 1458 // ============================================================================ |
| 1456 // Don't just add flags to the end, put them in the right section in | 1459 // Don't just add flags to the end, put them in the right section in |
| 1457 // alphabetical order. See top instructions for more. | 1460 // alphabetical order. See top instructions for more. |
| 1458 // ============================================================================ | 1461 // ============================================================================ |
| 1459 | 1462 |
| 1460 } // namespace flag_descriptions | 1463 } // namespace flag_descriptions |
| 1461 | 1464 |
| 1462 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1465 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |