| 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 3129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3140 // The value of the Memory pressure thresholds for ChromeOS which use an | 3140 // The value of the Memory pressure thresholds for ChromeOS which use an |
| 3141 // aggressive release strategy. | 3141 // aggressive release strategy. |
| 3142 extern const char kAggressiveThresholds[]; | 3142 extern const char kAggressiveThresholds[]; |
| 3143 | 3143 |
| 3144 // Name for the flag to enable wake on packets. | 3144 // Name for the flag to enable wake on packets. |
| 3145 extern const char kWakeOnPacketsName[]; | 3145 extern const char kWakeOnPacketsName[]; |
| 3146 | 3146 |
| 3147 // Description for the flag to enable wake on packets. | 3147 // Description for the flag to enable wake on packets. |
| 3148 extern const char kWakeOnPacketsDescription[]; | 3148 extern const char kWakeOnPacketsDescription[]; |
| 3149 | 3149 |
| 3150 // Title of the flag used to enable quick unlock pin. | 3150 // Title of the flag used to enable quick unlock PIN. |
| 3151 extern const char kQuickUnlockPin[]; | 3151 extern const char kQuickUnlockPin[]; |
| 3152 | 3152 |
| 3153 // Description of the flag used to enable quick unlock pin. | 3153 // Description of the flag used to enable quick unlock PIN. |
| 3154 extern const char kQuickUnlockPinDescription[]; | 3154 extern const char kQuickUnlockPinDescription[]; |
| 3155 | 3155 |
| 3156 // Title of the flag used to enable PIN on signin. |
| 3157 extern const char kQuickUnlockPinSignin[]; |
| 3158 |
| 3159 // Description of the flag used to enable PIN on signin. |
| 3160 extern const char kQuickUnlockPinSigninDescription[]; |
| 3161 |
| 3156 // Title of the flag used to enable quick unlock fingerprint. | 3162 // Title of the flag used to enable quick unlock fingerprint. |
| 3157 extern const char kQuickUnlockFingerprint[]; | 3163 extern const char kQuickUnlockFingerprint[]; |
| 3158 | 3164 |
| 3159 // Description of the flag used to enable quick unlock fingerprint. | 3165 // Description of the flag used to enable quick unlock fingerprint. |
| 3160 extern const char kQuickUnlockFingerprintDescription[]; | 3166 extern const char kQuickUnlockFingerprintDescription[]; |
| 3161 | 3167 |
| 3162 // Name of the about:flag option for experimental accessibility features. | 3168 // Name of the about:flag option for experimental accessibility features. |
| 3163 extern const char kExperimentalAccessibilityFeaturesName[]; | 3169 extern const char kExperimentalAccessibilityFeaturesName[]; |
| 3164 | 3170 |
| 3165 // Description of the about:flag option for experimental accessibility features. | 3171 // Description of the about:flag option for experimental accessibility features. |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3264 extern const char kEnableCopylessPasteName[]; | 3270 extern const char kEnableCopylessPasteName[]; |
| 3265 | 3271 |
| 3266 // Description of the flag that enables Copyless Paste. | 3272 // Description of the flag that enables Copyless Paste. |
| 3267 extern const char kEnableCopylessPasteDescription[]; | 3273 extern const char kEnableCopylessPasteDescription[]; |
| 3268 | 3274 |
| 3269 #endif // defined(OS_ANDROID) | 3275 #endif // defined(OS_ANDROID) |
| 3270 | 3276 |
| 3271 } // namespace flag_descriptions | 3277 } // namespace flag_descriptions |
| 3272 | 3278 |
| 3273 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3279 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |