| 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 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 | 1341 |
| 1342 extern const char kTeamDrivesName[]; | 1342 extern const char kTeamDrivesName[]; |
| 1343 extern const char kTeamDrivesDescription[]; | 1343 extern const char kTeamDrivesDescription[]; |
| 1344 | 1344 |
| 1345 extern const char kTetherName[]; | 1345 extern const char kTetherName[]; |
| 1346 extern const char kTetherDescription[]; | 1346 extern const char kTetherDescription[]; |
| 1347 | 1347 |
| 1348 extern const char kTouchscreenCalibrationName[]; | 1348 extern const char kTouchscreenCalibrationName[]; |
| 1349 extern const char kTouchscreenCalibrationDescription[]; | 1349 extern const char kTouchscreenCalibrationDescription[]; |
| 1350 | 1350 |
| 1351 extern const char kUiDevToolsName[]; |
| 1352 extern const char kUiDevToolsDescription[]; |
| 1353 |
| 1351 extern const char kUseMusName[]; | 1354 extern const char kUseMusName[]; |
| 1352 extern const char kUseMusDescription[]; | 1355 extern const char kUseMusDescription[]; |
| 1353 extern const char kEnableMashDescription[]; | 1356 extern const char kEnableMashDescription[]; |
| 1354 extern const char kEnableMusDescription[]; | 1357 extern const char kEnableMusDescription[]; |
| 1355 | 1358 |
| 1356 extern const char kVideoPlayerChromecastSupportName[]; | 1359 extern const char kVideoPlayerChromecastSupportName[]; |
| 1357 extern const char kVideoPlayerChromecastSupportDescription[]; | 1360 extern const char kVideoPlayerChromecastSupportDescription[]; |
| 1358 | 1361 |
| 1359 extern const char kVirtualKeyboardName[]; | 1362 extern const char kVirtualKeyboardName[]; |
| 1360 extern const char kVirtualKeyboardDescription[]; | 1363 extern const char kVirtualKeyboardDescription[]; |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1497 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1500 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1498 | 1501 |
| 1499 // ============================================================================ | 1502 // ============================================================================ |
| 1500 // Don't just add flags to the end, put them in the right section in | 1503 // Don't just add flags to the end, put them in the right section in |
| 1501 // alphabetical order. See top instructions for more. | 1504 // alphabetical order. See top instructions for more. |
| 1502 // ============================================================================ | 1505 // ============================================================================ |
| 1503 | 1506 |
| 1504 } // namespace flag_descriptions | 1507 } // namespace flag_descriptions |
| 1505 | 1508 |
| 1506 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1509 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |