| 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 #include "chrome/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
| 6 | 6 |
| 7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
| 8 | 8 |
| 9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
| 10 | 10 |
| (...skipping 2887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2898 | 2898 |
| 2899 const char kWakeOnPacketsName[] = "Wake On Packets"; | 2899 const char kWakeOnPacketsName[] = "Wake On Packets"; |
| 2900 | 2900 |
| 2901 const char kWakeOnPacketsDescription[] = | 2901 const char kWakeOnPacketsDescription[] = |
| 2902 "Enables waking the device based on the receipt of some network " | 2902 "Enables waking the device based on the receipt of some network " |
| 2903 "packets."; | 2903 "packets."; |
| 2904 | 2904 |
| 2905 const char kQuickUnlockPin[] = "Quick Unlock (PIN)"; | 2905 const char kQuickUnlockPin[] = "Quick Unlock (PIN)"; |
| 2906 | 2906 |
| 2907 const char kQuickUnlockPinDescription[] = | 2907 const char kQuickUnlockPinDescription[] = |
| 2908 "Enabling PIN quick unlock allows you to use a PIN to unlock your " | 2908 "Enabling PIN quick unlock allows you to use a PIN to unlock your ChromeOS " |
| 2909 "Chromebook on the lock screen after you have signed into your device."; | 2909 "device on the lock screen after you have signed into your device."; |
| 2910 |
| 2911 const char kQuickUnlockPinSignin[] = "Enable PIN when logging in."; |
| 2912 |
| 2913 const char kQuickUnlockPinSigninDescription[] = |
| 2914 "Enabling PIN allows you to use a PIN to sign in and unlock your ChromeOS " |
| 2915 "device. After changing this flag PIN needs to be set up again."; |
| 2910 | 2916 |
| 2911 const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)"; | 2917 const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)"; |
| 2912 | 2918 |
| 2913 const char kQuickUnlockFingerprintDescription[] = | 2919 const char kQuickUnlockFingerprintDescription[] = |
| 2914 "Enabling fingerprint quick unlock allows you to setup and use a " | 2920 "Enabling fingerprint quick unlock allows you to setup and use a " |
| 2915 "fingerprint to unlock your Chromebook on the lock screen after you " | 2921 "fingerprint to unlock your Chromebook on the lock screen after you " |
| 2916 "have signed into your device."; | 2922 "have signed into your device."; |
| 2917 | 2923 |
| 2918 const char kExperimentalAccessibilityFeaturesName[] = | 2924 const char kExperimentalAccessibilityFeaturesName[] = |
| 2919 "Experimental accessibility features"; | 2925 "Experimental accessibility features"; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3007 const char kEnableCopylessPasteDescription[] = | 3013 const char kEnableCopylessPasteDescription[] = |
| 3008 "Provide suggestions for text input, based on your recent context. For " | 3014 "Provide suggestions for text input, based on your recent context. For " |
| 3009 "example, if you looked at a restaurant website and switched to the Maps " | 3015 "example, if you looked at a restaurant website and switched to the Maps " |
| 3010 "app, the keyboard would offer the name of that restaurant as a suggestion " | 3016 "app, the keyboard would offer the name of that restaurant as a suggestion " |
| 3011 "to enter into the search bar. The data is indexed locally, and never sent " | 3017 "to enter into the search bar. The data is indexed locally, and never sent " |
| 3012 "to the server. It's disabled in incognito mode."; | 3018 "to the server. It's disabled in incognito mode."; |
| 3013 | 3019 |
| 3014 #endif // defined(OS_ANDROID) | 3020 #endif // defined(OS_ANDROID) |
| 3015 | 3021 |
| 3016 } // namespace flag_descriptions | 3022 } // namespace flag_descriptions |
| OLD | NEW |