Chromium Code Reviews| Index: chrome/common/pref_names.cc |
| diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc |
| index e23ab4c9227097a76d2663fe91b443fab7189d3f..4a94195179d8979e517ed8fba062d1fc8b5d6f60 100644 |
| --- a/chrome/common/pref_names.cc |
| +++ b/chrome/common/pref_names.cc |
| @@ -39,6 +39,14 @@ const char kHomePageIsNewTabPage[] = "homepage_is_newtabpage"; |
| // This is the URL of the page to load when opening new tabs. |
| const char kHomePage[] = "homepage"; |
| +#if defined(OS_WIN) |
| +// This is a timestamp of the last time this profile was reset by a third party |
| +// tool. On Windows, a third party tool may set a registry value that will be |
| +// compared to this value and if different will result in a profile reset |
| +// prompt. See triggered_profile_resetter.h for more information. |
| +const char kLastProfileResetTimestamp[] = "last_reset_timestamp"; |
|
grt (UTC plus 2)
2015/09/04 18:35:48
wdyt of this being profile.last_reset_timestamp?
robertshield
2015/09/04 20:27:18
I think that's a capital idea!
|
| +#endif |
| + |
| // An integer that keeps track of the profile icon version. This allows us to |
| // determine the state of the profile icon for icon format changes. |
| const char kProfileIconVersion[] = "profile.icon_version"; |