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 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1078 | 1078 |
1079 extern const char kUseAndroidMidiApiName[]; | 1079 extern const char kUseAndroidMidiApiName[]; |
1080 extern const char kUseAndroidMidiApiDescription[]; | 1080 extern const char kUseAndroidMidiApiDescription[]; |
1081 | 1081 |
1082 extern const char kUseNewDoodleApiName[]; | 1082 extern const char kUseNewDoodleApiName[]; |
1083 extern const char kUseNewDoodleApiDescription[]; | 1083 extern const char kUseNewDoodleApiDescription[]; |
1084 | 1084 |
1085 extern const char kWebPaymentsModifiersName[]; | 1085 extern const char kWebPaymentsModifiersName[]; |
1086 extern const char kWebPaymentsModifiersDescription[]; | 1086 extern const char kWebPaymentsModifiersDescription[]; |
1087 | 1087 |
| 1088 extern const char kXGEOVisibleNetworksName[]; |
| 1089 extern const char kXGEOVisibleNetworksDescription[]; |
| 1090 |
1088 // Non-Android ---------------------------------------------------------------- | 1091 // Non-Android ---------------------------------------------------------------- |
1089 | 1092 |
1090 #else // !defined(OS_ANDROID) | 1093 #else // !defined(OS_ANDROID) |
1091 | 1094 |
1092 extern const char kEnableAudioFocusName[]; | 1095 extern const char kEnableAudioFocusName[]; |
1093 extern const char kEnableAudioFocusDescription[]; | 1096 extern const char kEnableAudioFocusDescription[]; |
1094 extern const char kEnableAudioFocusDisabled[]; | 1097 extern const char kEnableAudioFocusDisabled[]; |
1095 extern const char kEnableAudioFocusEnabled[]; | 1098 extern const char kEnableAudioFocusEnabled[]; |
1096 extern const char kEnableAudioFocusEnabledDuckFlash[]; | 1099 extern const char kEnableAudioFocusEnabledDuckFlash[]; |
1097 | 1100 |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1466 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1469 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
1467 | 1470 |
1468 // ============================================================================ | 1471 // ============================================================================ |
1469 // Don't just add flags to the end, put them in the right section in | 1472 // Don't just add flags to the end, put them in the right section in |
1470 // alphabetical order. See top instructions for more. | 1473 // alphabetical order. See top instructions for more. |
1471 // ============================================================================ | 1474 // ============================================================================ |
1472 | 1475 |
1473 } // namespace flag_descriptions | 1476 } // namespace flag_descriptions |
1474 | 1477 |
1475 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1478 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |