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 2407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2418 | 2418 |
2419 // Name of the scroll anchoring flag. | 2419 // Name of the scroll anchoring flag. |
2420 extern const char kEnableScrollAnchoringName[]; | 2420 extern const char kEnableScrollAnchoringName[]; |
2421 | 2421 |
2422 // Description of the scroll anchoring flag | 2422 // Description of the scroll anchoring flag |
2423 extern const char kEnableScrollAnchoringDescription[]; | 2423 extern const char kEnableScrollAnchoringDescription[]; |
2424 | 2424 |
2425 #if defined(OS_CHROMEOS) | 2425 #if defined(OS_CHROMEOS) |
2426 | 2426 |
2427 // Name of the native cups flag. | 2427 // Name of the native cups flag. |
2428 extern const char kEnableNativeCupsName[]; | 2428 extern const char kDisableNativeCupsName[]; |
2429 | 2429 |
2430 // Description of the native CUPS flag | 2430 // Description of the native CUPS flag |
2431 extern const char kEnableNativeCupsDescription[]; | 2431 extern const char kDisableNativeCupsDescription[]; |
2432 | 2432 |
2433 // Name of the Android Wallpapers App flag. | 2433 // Name of the Android Wallpapers App flag. |
2434 extern const char kEnableAndroidWallpapersAppName[]; | 2434 extern const char kEnableAndroidWallpapersAppName[]; |
2435 | 2435 |
2436 // Description of the Android Wallpapers App flag. | 2436 // Description of the Android Wallpapers App flag. |
2437 extern const char kEnableAndroidWallpapersAppDescription[]; | 2437 extern const char kEnableAndroidWallpapersAppDescription[]; |
2438 | 2438 |
2439 // Name of the touch support for screen magnifier flag. | 2439 // Name of the touch support for screen magnifier flag. |
2440 extern const char kEnableTouchSupportForScreenMagnifierName[]; | 2440 extern const char kEnableTouchSupportForScreenMagnifierName[]; |
2441 | 2441 |
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3140 | 3140 |
3141 // Description of the about: flag enabling emoji, handwriting and voice input on | 3141 // Description of the about: flag enabling emoji, handwriting and voice input on |
3142 // opt-in IME menu. | 3142 // opt-in IME menu. |
3143 extern const char kEnableEhvInputDescription[]; | 3143 extern const char kEnableEhvInputDescription[]; |
3144 | 3144 |
3145 #endif // #if defined(OS_CHROMEOS) | 3145 #endif // #if defined(OS_CHROMEOS) |
3146 | 3146 |
3147 } // namespace flag_descriptions | 3147 } // namespace flag_descriptions |
3148 | 3148 |
3149 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3149 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |