| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 const char kUnifiedDesktopEnabledByDefault[] = | 881 const char kUnifiedDesktopEnabledByDefault[] = |
| 882 "settings.display.unified_desktop_enabled_by_default"; | 882 "settings.display.unified_desktop_enabled_by_default"; |
| 883 | 883 |
| 884 // Whether the Chrome OS lock screen is allowed. | 884 // Whether the Chrome OS lock screen is allowed. |
| 885 const char kAllowScreenLock[] = "allow_screen_lock"; | 885 const char kAllowScreenLock[] = "allow_screen_lock"; |
| 886 | 886 |
| 887 // An int64 pref. This is a timestamp of the most recent time the profile took | 887 // An int64 pref. This is a timestamp of the most recent time the profile took |
| 888 // or dismissed HaTS (happiness-tracking) survey. | 888 // or dismissed HaTS (happiness-tracking) survey. |
| 889 const char kHatsLastInteractionTimestamp[] = "hats_last_interaction_timestamp"; | 889 const char kHatsLastInteractionTimestamp[] = "hats_last_interaction_timestamp"; |
| 890 | 890 |
| 891 // A boolean pref. Indicates if we've already shown a notification to inform the |
| 892 // current user about the quick unlock feature. |
| 893 const char kQuickUnlockFeatureNotificationShown[] = |
| 894 "quick_unlock_feature_notification_shown"; |
| 895 |
| 891 // The salt and hash for the pin quick unlock mechanism. | 896 // The salt and hash for the pin quick unlock mechanism. |
| 892 const char kQuickUnlockPinSalt[] = "quick_unlock.pin.salt"; | 897 const char kQuickUnlockPinSalt[] = "quick_unlock.pin.salt"; |
| 893 const char kQuickUnlockPinSecret[] = "quick_unlock.pin.secret"; | 898 const char kQuickUnlockPinSecret[] = "quick_unlock.pin.secret"; |
| 894 | 899 |
| 895 // An integer pref. Holds one of several values: | 900 // An integer pref. Holds one of several values: |
| 896 // 0: Supported. Device is in supported state. | 901 // 0: Supported. Device is in supported state. |
| 897 // 1: Security Only. Device is in Security-Only update (after initial 5 years). | 902 // 1: Security Only. Device is in Security-Only update (after initial 5 years). |
| 898 // 2: EOL. Device is End of Life(No more updates expected). | 903 // 2: EOL. Device is End of Life(No more updates expected). |
| 899 // This value needs to be consistent with EndOfLifeStatus enum. | 904 // This value needs to be consistent with EndOfLifeStatus enum. |
| 900 const char kEolStatus[] = "eol_status"; | 905 const char kEolStatus[] = "eol_status"; |
| (...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2256 #endif | 2261 #endif |
| 2257 | 2262 |
| 2258 // The base64-encoded representation of the public key to use to validate origin | 2263 // The base64-encoded representation of the public key to use to validate origin |
| 2259 // trial token signatures. | 2264 // trial token signatures. |
| 2260 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2265 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2261 | 2266 |
| 2262 // A list of origin trial features to disable by policy. | 2267 // A list of origin trial features to disable by policy. |
| 2263 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2268 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2264 | 2269 |
| 2265 } // namespace prefs | 2270 } // namespace prefs |
| OLD | NEW |