| 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 2443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2454 | 2454 |
| 2455 // Name of the scroll anchoring flag. | 2455 // Name of the scroll anchoring flag. |
| 2456 extern const char kEnableScrollAnchoringName[]; | 2456 extern const char kEnableScrollAnchoringName[]; |
| 2457 | 2457 |
| 2458 // Description of the scroll anchoring flag | 2458 // Description of the scroll anchoring flag |
| 2459 extern const char kEnableScrollAnchoringDescription[]; | 2459 extern const char kEnableScrollAnchoringDescription[]; |
| 2460 | 2460 |
| 2461 #if defined(OS_CHROMEOS) | 2461 #if defined(OS_CHROMEOS) |
| 2462 | 2462 |
| 2463 // Name of the native cups flag. | 2463 // Name of the native cups flag. |
| 2464 extern const char kEnableNativeCupsName[]; | 2464 extern const char kDisableNativeCupsName[]; |
| 2465 | 2465 |
| 2466 // Description of the native CUPS flag | 2466 // Description of the native CUPS flag |
| 2467 extern const char kEnableNativeCupsDescription[]; | 2467 extern const char kDisableNativeCupsDescription[]; |
| 2468 | 2468 |
| 2469 // Name of the Android Wallpapers App flag. | 2469 // Name of the Android Wallpapers App flag. |
| 2470 extern const char kEnableAndroidWallpapersAppName[]; | 2470 extern const char kEnableAndroidWallpapersAppName[]; |
| 2471 | 2471 |
| 2472 // Description of the Android Wallpapers App flag. | 2472 // Description of the Android Wallpapers App flag. |
| 2473 extern const char kEnableAndroidWallpapersAppDescription[]; | 2473 extern const char kEnableAndroidWallpapersAppDescription[]; |
| 2474 | 2474 |
| 2475 // Name of the touch support for screen magnifier flag. | 2475 // Name of the touch support for screen magnifier flag. |
| 2476 extern const char kEnableTouchSupportForScreenMagnifierName[]; | 2476 extern const char kEnableTouchSupportForScreenMagnifierName[]; |
| 2477 | 2477 |
| (...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3196 extern const char kEnableEncryptionMigrationName[]; | 3196 extern const char kEnableEncryptionMigrationName[]; |
| 3197 | 3197 |
| 3198 // Description of the about: flag for enabling encryption migratoin. | 3198 // Description of the about: flag for enabling encryption migratoin. |
| 3199 extern const char kEnableEncryptionMigrationDescription[]; | 3199 extern const char kEnableEncryptionMigrationDescription[]; |
| 3200 | 3200 |
| 3201 #endif // #if defined(OS_CHROMEOS) | 3201 #endif // #if defined(OS_CHROMEOS) |
| 3202 | 3202 |
| 3203 } // namespace flag_descriptions | 3203 } // namespace flag_descriptions |
| 3204 | 3204 |
| 3205 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3205 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |