Chromium Code Reviews| Index: chrome/common/pref_names.cc |
| diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc |
| index d47493512fa0a027b1bf6d8eb0521224773b5ccd..463e99d3cd2672568f09e44d3ec91dffd792317d 100644 |
| --- a/chrome/common/pref_names.cc |
| +++ b/chrome/common/pref_names.cc |
| @@ -872,6 +872,16 @@ const char kHatsLastInteractionTimestamp[] = "hats_last_interaction_timestamp"; |
| // The salt and hash for the pin quick unlock mechanism. |
| const char kQuickUnlockPinSalt[] = "quick_unlock.pin.salt"; |
| const char kQuickUnlockPinSecret[] = "quick_unlock.pin.secret"; |
| + |
| +// An integer pref. Holds one of several values: |
| +// 0: Supported. Device is in supported state. |
| +// 1: Security Only. Device is in Security-Only update (after initial 5 years). |
| +// 2: EOL. Device is End of Life(No more updates expected). |
|
xiyuan
2016/06/16 22:41:28
Also mention it needs to be consistent with EndOfL
xiaoyinh(OOO Sep 11-29)
2016/06/17 04:07:35
Done.
|
| +const char kEolStatus[] = "Eol_status"; |
|
xiyuan
2016/06/16 22:41:28
Eol_status -> eol_status to be consistent with oth
xiaoyinh(OOO Sep 11-29)
2016/06/17 04:07:35
Done.
|
| + |
| +// Boolean pref indicating the End Of Life notification was dismissed by the |
| +// user. |
| +const char kEolNotificationDismissed[] = "Eol_Notification_dismissed"; |
|
xiyuan
2016/06/16 22:41:28
Eol_Notification_dismissed -> eol_notification_dis
xiaoyinh(OOO Sep 11-29)
2016/06/17 04:07:35
Done.
|
| #endif // defined(OS_CHROMEOS) |
| // A boolean pref set to true if a Home button to open the Home pages should be |