| 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 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1310 | 1310 |
| 1311 extern const char kCrosRegionsModeName[]; | 1311 extern const char kCrosRegionsModeName[]; |
| 1312 extern const char kCrosRegionsModeDescription[]; | 1312 extern const char kCrosRegionsModeDescription[]; |
| 1313 extern const char kCrosRegionsModeDefault[]; | 1313 extern const char kCrosRegionsModeDefault[]; |
| 1314 extern const char kCrosRegionsModeOverride[]; | 1314 extern const char kCrosRegionsModeOverride[]; |
| 1315 extern const char kCrosRegionsModeHide[]; | 1315 extern const char kCrosRegionsModeHide[]; |
| 1316 | 1316 |
| 1317 extern const char kDisableNewVirtualKeyboardBehaviorName[]; | 1317 extern const char kDisableNewVirtualKeyboardBehaviorName[]; |
| 1318 extern const char kDisableNewVirtualKeyboardBehaviorDescription[]; | 1318 extern const char kDisableNewVirtualKeyboardBehaviorDescription[]; |
| 1319 | 1319 |
| 1320 extern const char kEnablePerUserTimezoneName[]; |
| 1321 extern const char kEnablePerUserTimezoneDescription[]; |
| 1322 |
| 1320 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; | 1323 extern const char kDisableSystemTimezoneAutomaticDetectionName[]; |
| 1321 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; | 1324 extern const char kDisableSystemTimezoneAutomaticDetectionDescription[]; |
| 1322 | 1325 |
| 1323 extern const char kDisplayColorCalibrationName[]; | 1326 extern const char kDisplayColorCalibrationName[]; |
| 1324 extern const char kDisplayColorCalibrationDescription[]; | 1327 extern const char kDisplayColorCalibrationDescription[]; |
| 1325 | 1328 |
| 1326 extern const char kEnableFullscreenAppListName[]; | 1329 extern const char kEnableFullscreenAppListName[]; |
| 1327 extern const char kEnableFullscreenAppListDescription[]; | 1330 extern const char kEnableFullscreenAppListDescription[]; |
| 1328 | 1331 |
| 1329 extern const char kEnableBackgroundBlurName[]; | 1332 extern const char kEnableBackgroundBlurName[]; |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1628 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1631 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1629 | 1632 |
| 1630 // ============================================================================ | 1633 // ============================================================================ |
| 1631 // Don't just add flags to the end, put them in the right section in | 1634 // Don't just add flags to the end, put them in the right section in |
| 1632 // alphabetical order. See top instructions for more. | 1635 // alphabetical order. See top instructions for more. |
| 1633 // ============================================================================ | 1636 // ============================================================================ |
| 1634 | 1637 |
| 1635 } // namespace flag_descriptions | 1638 } // namespace flag_descriptions |
| 1636 | 1639 |
| 1637 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1640 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |