| 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 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 // Whether the Chrome OS lock screen is allowed. | 866 // Whether the Chrome OS lock screen is allowed. |
| 867 const char kAllowScreenLock[] = "allow_screen_lock"; | 867 const char kAllowScreenLock[] = "allow_screen_lock"; |
| 868 | 868 |
| 869 // An int64 pref. This is a timestamp of the most recent time the profile took | 869 // An int64 pref. This is a timestamp of the most recent time the profile took |
| 870 // or dismissed HaTS (happiness-tracking) survey. | 870 // or dismissed HaTS (happiness-tracking) survey. |
| 871 const char kHatsLastInteractionTimestamp[] = "hats_last_interaction_timestamp"; | 871 const char kHatsLastInteractionTimestamp[] = "hats_last_interaction_timestamp"; |
| 872 | 872 |
| 873 // The salt and hash for the pin quick unlock mechanism. | 873 // The salt and hash for the pin quick unlock mechanism. |
| 874 const char kQuickUnlockPinSalt[] = "quick_unlock.pin.salt"; | 874 const char kQuickUnlockPinSalt[] = "quick_unlock.pin.salt"; |
| 875 const char kQuickUnlockPinSecret[] = "quick_unlock.pin.secret"; | 875 const char kQuickUnlockPinSecret[] = "quick_unlock.pin.secret"; |
| 876 |
| 877 // An integer pref. Holds one of several values: |
| 878 // 0: Supported. Device is in supported state. |
| 879 // 1: Security Only. Device is in Security-Only update (after initial 5 years). |
| 880 // 2: EOL. Device is End of Life(No more updates expected). |
| 881 // This value needs to be consistent with EndOfLifeStatus enum. |
| 882 const char kEolStatus[] = "eol_status"; |
| 883 |
| 884 // Boolean pref indicating the End Of Life notification was dismissed by the |
| 885 // user. |
| 886 const char kEolNotificationDismissed[] = "eol_notification_dismissed"; |
| 876 #endif // defined(OS_CHROMEOS) | 887 #endif // defined(OS_CHROMEOS) |
| 877 | 888 |
| 878 // A boolean pref set to true if a Home button to open the Home pages should be | 889 // A boolean pref set to true if a Home button to open the Home pages should be |
| 879 // visible on the toolbar. | 890 // visible on the toolbar. |
| 880 const char kShowHomeButton[] = "browser.show_home_button"; | 891 const char kShowHomeButton[] = "browser.show_home_button"; |
| 881 | 892 |
| 882 // A string value which saves short list of recently user selected encodings | 893 // A string value which saves short list of recently user selected encodings |
| 883 // separated with comma punctuation mark. | 894 // separated with comma punctuation mark. |
| 884 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; | 895 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; |
| 885 | 896 |
| (...skipping 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2221 const char kMediaRouterEnableCloudServices[] = | 2232 const char kMediaRouterEnableCloudServices[] = |
| 2222 "media_router.cloudservices.enabled"; | 2233 "media_router.cloudservices.enabled"; |
| 2223 #endif // defined(GOOGLE_CHROME_BUILD) | 2234 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2224 // Whether or not the Media Router first run flow has been acknowledged by the | 2235 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2225 // user. | 2236 // user. |
| 2226 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2237 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2227 "media_router.firstrunflow.acknowledged"; | 2238 "media_router.firstrunflow.acknowledged"; |
| 2228 #endif | 2239 #endif |
| 2229 | 2240 |
| 2230 } // namespace prefs | 2241 } // namespace prefs |
| OLD | NEW |