| 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 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1201 | 1201 |
| 1202 extern const char kHostedAppsInWindowsName[]; | 1202 extern const char kHostedAppsInWindowsName[]; |
| 1203 extern const char kHostedAppsInWindowsDescription[]; | 1203 extern const char kHostedAppsInWindowsDescription[]; |
| 1204 | 1204 |
| 1205 extern const char kMacRTLName[]; | 1205 extern const char kMacRTLName[]; |
| 1206 extern const char kMacRTLDescription[]; | 1206 extern const char kMacRTLDescription[]; |
| 1207 | 1207 |
| 1208 extern const char kMacTouchBarName[]; | 1208 extern const char kMacTouchBarName[]; |
| 1209 extern const char kMacTouchBarDescription[]; | 1209 extern const char kMacTouchBarDescription[]; |
| 1210 | 1210 |
| 1211 extern const char kMacV2SandboxName[]; |
| 1212 extern const char kMacV2SandboxDescription[]; |
| 1213 |
| 1211 extern const char kMacViewsNativeAppWindowsName[]; | 1214 extern const char kMacViewsNativeAppWindowsName[]; |
| 1212 extern const char kMacViewsNativeAppWindowsDescription[]; | 1215 extern const char kMacViewsNativeAppWindowsDescription[]; |
| 1213 | 1216 |
| 1214 extern const char kMacViewsTaskManagerName[]; | 1217 extern const char kMacViewsTaskManagerName[]; |
| 1215 extern const char kMacViewsTaskManagerDescription[]; | 1218 extern const char kMacViewsTaskManagerDescription[]; |
| 1216 | 1219 |
| 1217 extern const char kTabDetachingInFullscreenName[]; | 1220 extern const char kTabDetachingInFullscreenName[]; |
| 1218 extern const char kTabDetachingInFullscreenDescription[]; | 1221 extern const char kTabDetachingInFullscreenDescription[]; |
| 1219 | 1222 |
| 1220 extern const char kTabStripKeyboardFocusName[]; | 1223 extern const char kTabStripKeyboardFocusName[]; |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1528 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1531 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1529 | 1532 |
| 1530 // ============================================================================ | 1533 // ============================================================================ |
| 1531 // Don't just add flags to the end, put them in the right section in | 1534 // Don't just add flags to the end, put them in the right section in |
| 1532 // alphabetical order. See top instructions for more. | 1535 // alphabetical order. See top instructions for more. |
| 1533 // ============================================================================ | 1536 // ============================================================================ |
| 1534 | 1537 |
| 1535 } // namespace flag_descriptions | 1538 } // namespace flag_descriptions |
| 1536 | 1539 |
| 1537 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1540 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |