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..20041cc6b79144b5a6ae46ecdcb14b316be2cc64 100644 |
| --- a/chrome/common/pref_names.cc |
| +++ b/chrome/common/pref_names.cc |
| @@ -872,6 +872,17 @@ 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). |
| +// This value needs to be consistent with EndOfLifeStatus enum. |
| +const char kEolStatus[] = "eol_status"; |
| + |
| +// Boolean pref indicating the End Of Life notification was dismissed by the |
| +// user. |
| +const char kEolNotificationDismissed[] = "eol_Notification_dismissed"; |
|
xiyuan
2016/06/17 20:02:10
all lower case, i.e. eol_notification_dismissed
xiaoyinh(OOO Sep 11-29)
2016/06/17 22:36:53
Done.
|
| #endif // defined(OS_CHROMEOS) |
| // A boolean pref set to true if a Home button to open the Home pages should be |