| 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 3100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3111 | 3111 |
| 3112 // Description for the flag to enable wake on packets. | 3112 // Description for the flag to enable wake on packets. |
| 3113 extern const char kWakeOnPacketsDescription[]; | 3113 extern const char kWakeOnPacketsDescription[]; |
| 3114 | 3114 |
| 3115 // Title of the flag used to enable quick unlock pin. | 3115 // Title of the flag used to enable quick unlock pin. |
| 3116 extern const char kQuickUnlockPin[]; | 3116 extern const char kQuickUnlockPin[]; |
| 3117 | 3117 |
| 3118 // Description of the flag used to enable quick unlock pin. | 3118 // Description of the flag used to enable quick unlock pin. |
| 3119 extern const char kQuickUnlockPinDescription[]; | 3119 extern const char kQuickUnlockPinDescription[]; |
| 3120 | 3120 |
| 3121 // Title of the flag used to enable pin on signin. |
| 3122 extern const char kQuickUnlockPinSignin[]; |
| 3123 |
| 3124 // Description of the flag used to enable pin on signin. |
| 3125 extern const char kQuickUnlockPinSigninDescription[]; |
| 3126 |
| 3121 // Title of the flag used to enable quick unlock fingerprint. | 3127 // Title of the flag used to enable quick unlock fingerprint. |
| 3122 extern const char kQuickUnlockFingerprint[]; | 3128 extern const char kQuickUnlockFingerprint[]; |
| 3123 | 3129 |
| 3124 // Description of the flag used to enable quick unlock fingerprint. | 3130 // Description of the flag used to enable quick unlock fingerprint. |
| 3125 extern const char kQuickUnlockFingerprintDescription[]; | 3131 extern const char kQuickUnlockFingerprintDescription[]; |
| 3126 | 3132 |
| 3127 // Name of the about:flag option for experimental accessibility features. | 3133 // Name of the about:flag option for experimental accessibility features. |
| 3128 extern const char kExperimentalAccessibilityFeaturesName[]; | 3134 extern const char kExperimentalAccessibilityFeaturesName[]; |
| 3129 | 3135 |
| 3130 // Description of the about:flag option for experimental accessibility features. | 3136 // Description of the about:flag option for experimental accessibility features. |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3229 extern const char kEnableCopylessPasteName[]; | 3235 extern const char kEnableCopylessPasteName[]; |
| 3230 | 3236 |
| 3231 // Description of the flag that enables Copyless Paste. | 3237 // Description of the flag that enables Copyless Paste. |
| 3232 extern const char kEnableCopylessPasteDescription[]; | 3238 extern const char kEnableCopylessPasteDescription[]; |
| 3233 | 3239 |
| 3234 #endif // defined(OS_ANDROID) | 3240 #endif // defined(OS_ANDROID) |
| 3235 | 3241 |
| 3236 } // namespace flag_descriptions | 3242 } // namespace flag_descriptions |
| 3237 | 3243 |
| 3238 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3244 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |