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 2399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2410 | 2410 |
2411 // Name of the scroll anchoring flag. | 2411 // Name of the scroll anchoring flag. |
2412 extern const char kEnableScrollAnchoringName[]; | 2412 extern const char kEnableScrollAnchoringName[]; |
2413 | 2413 |
2414 // Description of the scroll anchoring flag | 2414 // Description of the scroll anchoring flag |
2415 extern const char kEnableScrollAnchoringDescription[]; | 2415 extern const char kEnableScrollAnchoringDescription[]; |
2416 | 2416 |
2417 #if defined(OS_CHROMEOS) | 2417 #if defined(OS_CHROMEOS) |
2418 | 2418 |
2419 // Name of the native cups flag. | 2419 // Name of the native cups flag. |
2420 extern const char kEnableNativeCupsName[]; | 2420 extern const char kDisableNativeCupsName[]; |
2421 | 2421 |
2422 // Description of the native CUPS flag | 2422 // Description of the native CUPS flag |
2423 extern const char kEnableNativeCupsDescription[]; | 2423 extern const char kDisableNativeCupsDescription[]; |
2424 | 2424 |
2425 // Name of the Android Wallpapers App flag. | 2425 // Name of the Android Wallpapers App flag. |
2426 extern const char kEnableAndroidWallpapersAppName[]; | 2426 extern const char kEnableAndroidWallpapersAppName[]; |
2427 | 2427 |
2428 // Description of the Android Wallpapers App flag. | 2428 // Description of the Android Wallpapers App flag. |
2429 extern const char kEnableAndroidWallpapersAppDescription[]; | 2429 extern const char kEnableAndroidWallpapersAppDescription[]; |
2430 | 2430 |
2431 // Name of the touch support for screen magnifier flag. | 2431 // Name of the touch support for screen magnifier flag. |
2432 extern const char kEnableTouchSupportForScreenMagnifierName[]; | 2432 extern const char kEnableTouchSupportForScreenMagnifierName[]; |
2433 | 2433 |
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3128 | 3128 |
3129 // Description of the about: flag enabling emoji, handwriting and voice input on | 3129 // Description of the about: flag enabling emoji, handwriting and voice input on |
3130 // opt-in IME menu. | 3130 // opt-in IME menu. |
3131 extern const char kEnableEhvInputDescription[]; | 3131 extern const char kEnableEhvInputDescription[]; |
3132 | 3132 |
3133 #endif // #if defined(OS_CHROMEOS) | 3133 #endif // #if defined(OS_CHROMEOS) |
3134 | 3134 |
3135 } // namespace flag_descriptions | 3135 } // namespace flag_descriptions |
3136 | 3136 |
3137 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3137 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |