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 2992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3003 | 3003 |
3004 // Title for the flag to delay navigation | 3004 // Title for the flag to delay navigation |
3005 extern const char kDelayNavigationName[]; | 3005 extern const char kDelayNavigationName[]; |
3006 | 3006 |
3007 // Description for the flag to delay navigation | 3007 // Description for the flag to delay navigation |
3008 extern const char kDelayNavigationDescription[]; | 3008 extern const char kDelayNavigationDescription[]; |
3009 | 3009 |
3010 // Description of the 'Debugging keyboard shortcuts' lab. | 3010 // Description of the 'Debugging keyboard shortcuts' lab. |
3011 extern const char kDebugShortcutsDescription[]; | 3011 extern const char kDebugShortcutsDescription[]; |
3012 | 3012 |
| 3013 extern const char kMemoryAblationName[]; |
| 3014 extern const char kMemoryAblationDescription[]; |
| 3015 |
3013 #if defined(OS_ANDROID) | 3016 #if defined(OS_ANDROID) |
3014 | 3017 |
3015 // Name for the flag to enable the custom context menu. | 3018 // Name for the flag to enable the custom context menu. |
3016 extern const char kEnableCustomContextMenuName[]; | 3019 extern const char kEnableCustomContextMenuName[]; |
3017 | 3020 |
3018 // Description for the flag to enable the custom context menu. | 3021 // Description for the flag to enable the custom context menu. |
3019 extern const char kEnableCustomContextMenuDescription[]; | 3022 extern const char kEnableCustomContextMenuDescription[]; |
3020 | 3023 |
3021 #endif // defined(OS_ANDROID) | 3024 #endif // defined(OS_ANDROID) |
3022 | 3025 |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3196 extern const char kEnableEncryptionMigrationName[]; | 3199 extern const char kEnableEncryptionMigrationName[]; |
3197 | 3200 |
3198 // Description of the about: flag for enabling encryption migratoin. | 3201 // Description of the about: flag for enabling encryption migratoin. |
3199 extern const char kEnableEncryptionMigrationDescription[]; | 3202 extern const char kEnableEncryptionMigrationDescription[]; |
3200 | 3203 |
3201 #endif // #if defined(OS_CHROMEOS) | 3204 #endif // #if defined(OS_CHROMEOS) |
3202 | 3205 |
3203 } // namespace flag_descriptions | 3206 } // namespace flag_descriptions |
3204 | 3207 |
3205 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3208 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |