diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-28 19:50:31 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-28 19:50:31 +0000 |
commit | 3a399ee4c43b1251bcc461b45fb3d1f14da1e251 (patch) | |
tree | e40aa17f83f8313183968b5efe0d4b9ac02a9b5e /chrome/common/attrition_experiments.h | |
parent | 4c5fa5c763cdb9345bd43017b4d8e74a1677c408 (diff) | |
download | chromium_src-3a399ee4c43b1251bcc461b45fb3d1f14da1e251.zip chromium_src-3a399ee4c43b1251bcc461b45fb3d1f14da1e251.tar.gz chromium_src-3a399ee4c43b1251bcc461b45fb3d1f14da1e251.tar.bz2 |
Fix a couple of issues with the plugin experiment drafting
1- Don't draft people already drafted
2- Don't keep drafting from the pool of undrafted
BUG=85988
TEST=see bug
Review URL: http://codereview.chromium.org/7255003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90822 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/attrition_experiments.h')
-rw-r--r-- | chrome/common/attrition_experiments.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/chrome/common/attrition_experiments.h b/chrome/common/attrition_experiments.h index 30b30dc..5e47463 100644 --- a/chrome/common/attrition_experiments.h +++ b/chrome/common/attrition_experiments.h @@ -28,11 +28,14 @@ const wchar_t kSkype[] = L"SKPC,SKPG,SKPH,SKPI,SKPL,SKPM,SKPN"; // Constants for the "infobar plugins" experiment. These strings become // the registry omaha |client| value. The last one is considered to be -// the control group which reflects the current behavior. -const wchar_t kPluginNoBlockNoOOD[] = L"PI01"; -const wchar_t kPluginNoBlockDoOOD[] = L"PI02"; -const wchar_t kPluginDoBlockNoOOD[] = L"PI04"; -const wchar_t kPluginDoBlockDoOOD[] = L"PI10"; +// the control group which reflects the current behavior. Note that +// DoInfobarPluginsExperiment() relies on the prefix being PI, so if you +// change the prefix you need to fix that function. +const wchar_t kPluginNoBlockNoOOD[] = L"PI01"; +const wchar_t kPluginNoBlockDoOOD[] = L"PI02"; +const wchar_t kPluginDoBlockNoOOD[] = L"PI04"; +const wchar_t kPluginDoBlockDoOOD[] = L"PI08"; +const wchar_t kNotInPluginExperiment[] = L"PI20"; } // namespace |