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 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1189 | 1189 |
1190 extern const char kFullscreenToolbarRevealName[]; | 1190 extern const char kFullscreenToolbarRevealName[]; |
1191 extern const char kFullscreenToolbarRevealDescription[]; | 1191 extern const char kFullscreenToolbarRevealDescription[]; |
1192 | 1192 |
1193 extern const char kHostedAppsInWindowsName[]; | 1193 extern const char kHostedAppsInWindowsName[]; |
1194 extern const char kHostedAppsInWindowsDescription[]; | 1194 extern const char kHostedAppsInWindowsDescription[]; |
1195 | 1195 |
1196 extern const char kMacRTLName[]; | 1196 extern const char kMacRTLName[]; |
1197 extern const char kMacRTLDescription[]; | 1197 extern const char kMacRTLDescription[]; |
1198 | 1198 |
| 1199 extern const char kMacTouchBarName[]; |
| 1200 extern const char kMacTouchBarDescription[]; |
| 1201 |
1199 extern const char kMacViewsNativeAppWindowsName[]; | 1202 extern const char kMacViewsNativeAppWindowsName[]; |
1200 extern const char kMacViewsNativeAppWindowsDescription[]; | 1203 extern const char kMacViewsNativeAppWindowsDescription[]; |
1201 | 1204 |
1202 extern const char kMacViewsTaskManagerName[]; | 1205 extern const char kMacViewsTaskManagerName[]; |
1203 extern const char kMacViewsTaskManagerDescription[]; | 1206 extern const char kMacViewsTaskManagerDescription[]; |
1204 | 1207 |
1205 extern const char kTabDetachingInFullscreenName[]; | 1208 extern const char kTabDetachingInFullscreenName[]; |
1206 extern const char kTabDetachingInFullscreenDescription[]; | 1209 extern const char kTabDetachingInFullscreenDescription[]; |
1207 | 1210 |
1208 extern const char kTabStripKeyboardFocusName[]; | 1211 extern const char kTabStripKeyboardFocusName[]; |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1516 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1519 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
1517 | 1520 |
1518 // ============================================================================ | 1521 // ============================================================================ |
1519 // Don't just add flags to the end, put them in the right section in | 1522 // Don't just add flags to the end, put them in the right section in |
1520 // alphabetical order. See top instructions for more. | 1523 // alphabetical order. See top instructions for more. |
1521 // ============================================================================ | 1524 // ============================================================================ |
1522 | 1525 |
1523 } // namespace flag_descriptions | 1526 } // namespace flag_descriptions |
1524 | 1527 |
1525 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1528 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |