| 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 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 extern const char kEnableSpecialLocaleDescription[]; | 940 extern const char kEnableSpecialLocaleDescription[]; |
| 941 | 941 |
| 942 #if BUILDFLAG(ENABLE_VR) | 942 #if BUILDFLAG(ENABLE_VR) |
| 943 | 943 |
| 944 extern const char kEnableVrShellName[]; | 944 extern const char kEnableVrShellName[]; |
| 945 extern const char kEnableVrShellDescription[]; | 945 extern const char kEnableVrShellDescription[]; |
| 946 | 946 |
| 947 extern const char kVrCustomTabBrowsingName[]; | 947 extern const char kVrCustomTabBrowsingName[]; |
| 948 extern const char kVrCustomTabBrowsingDescription[]; | 948 extern const char kVrCustomTabBrowsingDescription[]; |
| 949 | 949 |
| 950 extern const char kWebVrAutopresentName[]; |
| 951 extern const char kWebVrAutopresentDescription[]; |
| 952 |
| 950 #endif // BUILDFLAG(ENABLE_VR) | 953 #endif // BUILDFLAG(ENABLE_VR) |
| 951 | 954 |
| 952 extern const char kEnableWebapk[]; | 955 extern const char kEnableWebapk[]; |
| 953 extern const char kEnableWebapkDescription[]; | 956 extern const char kEnableWebapkDescription[]; |
| 954 | 957 |
| 955 extern const char kEnableWebNfcName[]; | 958 extern const char kEnableWebNfcName[]; |
| 956 extern const char kEnableWebNfcDescription[]; | 959 extern const char kEnableWebNfcDescription[]; |
| 957 | 960 |
| 958 extern const char kEnableWebPaymentsSingleAppUiSkipName[]; | 961 extern const char kEnableWebPaymentsSingleAppUiSkipName[]; |
| 959 extern const char kEnableWebPaymentsSingleAppUiSkipDescription[]; | 962 extern const char kEnableWebPaymentsSingleAppUiSkipDescription[]; |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1469 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1472 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1470 | 1473 |
| 1471 // ============================================================================ | 1474 // ============================================================================ |
| 1472 // Don't just add flags to the end, put them in the right section in | 1475 // Don't just add flags to the end, put them in the right section in |
| 1473 // alphabetical order. See top instructions for more. | 1476 // alphabetical order. See top instructions for more. |
| 1474 // ============================================================================ | 1477 // ============================================================================ |
| 1475 | 1478 |
| 1476 } // namespace flag_descriptions | 1479 } // namespace flag_descriptions |
| 1477 | 1480 |
| 1478 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1481 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |