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 2941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2952 | 2952 |
2953 // Title for the flag to delay navigation | 2953 // Title for the flag to delay navigation |
2954 extern const char kDelayNavigationName[]; | 2954 extern const char kDelayNavigationName[]; |
2955 | 2955 |
2956 // Description for the flag to delay navigation | 2956 // Description for the flag to delay navigation |
2957 extern const char kDelayNavigationDescription[]; | 2957 extern const char kDelayNavigationDescription[]; |
2958 | 2958 |
2959 // Description of the 'Debugging keyboard shortcuts' lab. | 2959 // Description of the 'Debugging keyboard shortcuts' lab. |
2960 extern const char kDebugShortcutsDescription[]; | 2960 extern const char kDebugShortcutsDescription[]; |
2961 | 2961 |
| 2962 #if defined(OS_ANDROID) |
| 2963 |
| 2964 // Name for the flag to enable the custom context menu. |
| 2965 extern const char kEnableCustomContextMenuName[]; |
| 2966 |
| 2967 // Description for the flag to enable the custom context menu. |
| 2968 extern const char kEnableCustomContextMenuDescription[]; |
| 2969 |
| 2970 #endif // defined(OS_ANDROID) |
| 2971 |
2962 #if defined(OS_CHROMEOS) | 2972 #if defined(OS_CHROMEOS) |
2963 | 2973 |
2964 // File Manager | 2974 // File Manager |
2965 | 2975 |
2966 // Name of the about:flag option to enable the chromecast support for video app. | 2976 // Name of the about:flag option to enable the chromecast support for video app. |
2967 extern const char kVideoPlayerChromecastSupportName[]; | 2977 extern const char kVideoPlayerChromecastSupportName[]; |
2968 | 2978 |
2969 // Description of the about:flag option to the enable the chromecast support for | 2979 // Description of the about:flag option to the enable the chromecast support for |
2970 // video app. | 2980 // video app. |
2971 extern const char kVideoPlayerChromecastSupportDescription[]; | 2981 extern const char kVideoPlayerChromecastSupportDescription[]; |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3128 | 3138 |
3129 // Description of the about: flag enabling emoji, handwriting and voice input on | 3139 // Description of the about: flag enabling emoji, handwriting and voice input on |
3130 // opt-in IME menu. | 3140 // opt-in IME menu. |
3131 extern const char kEnableEhvInputDescription[]; | 3141 extern const char kEnableEhvInputDescription[]; |
3132 | 3142 |
3133 #endif // #if defined(OS_CHROMEOS) | 3143 #endif // #if defined(OS_CHROMEOS) |
3134 | 3144 |
3135 } // namespace flag_descriptions | 3145 } // namespace flag_descriptions |
3136 | 3146 |
3137 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3147 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |