| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 extern const char kEnableDataReductionProxyLitePageName[]; | 187 extern const char kEnableDataReductionProxyLitePageName[]; |
| 188 extern const char kEnableDataReductionProxyLitePageDescription[]; | 188 extern const char kEnableDataReductionProxyLitePageDescription[]; |
| 189 | 189 |
| 190 extern const char kDataReductionProxyServerAlternative[]; | 190 extern const char kDataReductionProxyServerAlternative[]; |
| 191 extern const char kEnableDataReductionProxyServerExperimentName[]; | 191 extern const char kEnableDataReductionProxyServerExperimentName[]; |
| 192 extern const char kEnableDataReductionProxyServerExperimentDescription[]; | 192 extern const char kEnableDataReductionProxyServerExperimentDescription[]; |
| 193 | 193 |
| 194 extern const char kEnableDataReductionProxySavingsPromoName[]; | 194 extern const char kEnableDataReductionProxySavingsPromoName[]; |
| 195 extern const char kEnableDataReductionProxySavingsPromoDescription[]; | 195 extern const char kEnableDataReductionProxySavingsPromoDescription[]; |
| 196 | 196 |
| 197 extern const char kEnableStalePreviewsName[]; |
| 198 extern const char kEnableStalePreviewsDescription[]; |
| 199 |
| 197 extern const char kEnableEnumeratingAudioDevicesName[]; | 200 extern const char kEnableEnumeratingAudioDevicesName[]; |
| 198 extern const char kEnableEnumeratingAudioDevicesDescription[]; | 201 extern const char kEnableEnumeratingAudioDevicesDescription[]; |
| 199 | 202 |
| 200 extern const char kEnableGenericSensorName[]; | 203 extern const char kEnableGenericSensorName[]; |
| 201 extern const char kEnableGenericSensorDescription[]; | 204 extern const char kEnableGenericSensorDescription[]; |
| 202 | 205 |
| 203 extern const char kEnableGroupedHistoryName[]; | 206 extern const char kEnableGroupedHistoryName[]; |
| 204 extern const char kEnableGroupedHistoryDescription[]; | 207 extern const char kEnableGroupedHistoryDescription[]; |
| 205 | 208 |
| 206 extern const char kEnableHDRName[]; | 209 extern const char kEnableHDRName[]; |
| (...skipping 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1519 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1522 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1520 | 1523 |
| 1521 // ============================================================================ | 1524 // ============================================================================ |
| 1522 // Don't just add flags to the end, put them in the right section in | 1525 // Don't just add flags to the end, put them in the right section in |
| 1523 // alphabetical order. See top instructions for more. | 1526 // alphabetical order. See top instructions for more. |
| 1524 // ============================================================================ | 1527 // ============================================================================ |
| 1525 | 1528 |
| 1526 } // namespace flag_descriptions | 1529 } // namespace flag_descriptions |
| 1527 | 1530 |
| 1528 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1531 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |