Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2816643002: cros: Add flag to enable pin on sign-in screen. (Closed)
Patch Set: Initial upload Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2860 matching lines...) Expand 10 before | Expand all | Expand 10 after
2871 const char kWakeOnPacketsDescription[] = 2871 const char kWakeOnPacketsDescription[] =
2872 "Enables waking the device based on the receipt of some network " 2872 "Enables waking the device based on the receipt of some network "
2873 "packets."; 2873 "packets.";
2874 2874
2875 const char kQuickUnlockPin[] = "Quick Unlock (PIN)"; 2875 const char kQuickUnlockPin[] = "Quick Unlock (PIN)";
2876 2876
2877 const char kQuickUnlockPinDescription[] = 2877 const char kQuickUnlockPinDescription[] =
2878 "Enabling PIN quick unlock allows you to use a PIN to unlock your " 2878 "Enabling PIN quick unlock allows you to use a PIN to unlock your "
2879 "Chromebook on the lock screen after you have signed into your device."; 2879 "Chromebook on the lock screen after you have signed into your device.";
2880 2880
2881 const char kQuickUnlockPinSignin[] = "Enable PIN when logging in.";
2882
2883 const char kQuickUnlockPinSigninDescription[] =
2884 "Enabling PIN allows you to use a PIN to sign in and unlock your "
2885 "Chromebook. After changing this flag PIN needs to be set up again.";
achuithb 2017/04/16 23:50:36 And you really want to just use Chromebook here?
jdufault 2017/04/17 20:36:08 Done.
2886
2881 const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)"; 2887 const char kQuickUnlockFingerprint[] = "Quick Unlock (Fingerprint)";
2882 2888
2883 const char kQuickUnlockFingerprintDescription[] = 2889 const char kQuickUnlockFingerprintDescription[] =
2884 "Enabling fingerprint quick unlock allows you to setup and use a " 2890 "Enabling fingerprint quick unlock allows you to setup and use a "
2885 "fingerprint to unlock your Chromebook on the lock screen after you " 2891 "fingerprint to unlock your Chromebook on the lock screen after you "
2886 "have signed into your device."; 2892 "have signed into your device.";
2887 2893
2888 const char kExperimentalAccessibilityFeaturesName[] = 2894 const char kExperimentalAccessibilityFeaturesName[] =
2889 "Experimental accessibility features"; 2895 "Experimental accessibility features";
2890 2896
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
2977 const char kEnableCopylessPasteDescription[] = 2983 const char kEnableCopylessPasteDescription[] =
2978 "Provide suggestions for text input, based on your recent context. For " 2984 "Provide suggestions for text input, based on your recent context. For "
2979 "example, if you looked at a restaurant website and switched to the Maps " 2985 "example, if you looked at a restaurant website and switched to the Maps "
2980 "app, the keyboard would offer the name of that restaurant as a suggestion " 2986 "app, the keyboard would offer the name of that restaurant as a suggestion "
2981 "to enter into the search bar. The data is indexed locally, and never sent " 2987 "to enter into the search bar. The data is indexed locally, and never sent "
2982 "to the server. It's disabled in incognito mode."; 2988 "to the server. It's disabled in incognito mode.";
2983 2989
2984 #endif // defined(OS_ANDROID) 2990 #endif // defined(OS_ANDROID)
2985 2991
2986 } // namespace flag_descriptions 2992 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698