diff options
author | vasilii <vasilii@chromium.org> | 2014-11-11 04:29:49 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-11 12:30:07 +0000 |
commit | 4d7cdf425d0b57f4c2a766433f5ffdc3cedd909f (patch) | |
tree | be6923ccb7fcd77a63d376fef9e7108f1f4b48fd /chrome/common/pref_names.cc | |
parent | 3b0e841aa8b7d5ca5999f4340b8fa6f73305d3d2 (diff) | |
download | chromium_src-4d7cdf425d0b57f4c2a766433f5ffdc3cedd909f.zip chromium_src-4d7cdf425d0b57f4c2a766433f5ffdc3cedd909f.tar.gz chromium_src-4d7cdf425d0b57f4c2a766433f5ffdc3cedd909f.tar.bz2 |
Finch experiment for limiting the password bubble annoyance.
BUG=431739
TBR=battre@chromium.org
Review URL: https://codereview.chromium.org/711043002
Cr-Commit-Position: refs/heads/master@{#303630}
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 2c2d7d4..fef4477 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -2279,4 +2279,14 @@ const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; // A dictionary that maps user id to hardlock state. const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; +// The beginning of time span when we count user's "Nope" for the password +// bubble. +const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; + +// The count of user's "Nope" for the password bubble. +const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; + +// Last user's interaction with the password bubble. +const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; + } // namespace prefs |