diff options
author | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-30 03:30:19 +0000 |
---|---|---|
committer | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-30 03:30:19 +0000 |
commit | 260e7ffe2d5d5133ebcb90fc0e392a04efe2f1c1 (patch) | |
tree | 72c26dbbf0e95d8265f35c26f61aa53357251fec /chrome/common/attrition_experiments.h | |
parent | 5dd719cc79911f30f880931c053aea9ca4fb10a5 (diff) | |
download | chromium_src-260e7ffe2d5d5133ebcb90fc0e392a04efe2f1c1.zip chromium_src-260e7ffe2d5d5133ebcb90fc0e392a04efe2f1c1.tar.gz chromium_src-260e7ffe2d5d5133ebcb90fc0e392a04efe2f1c1.tar.bz2 |
Revert 129775 - Remove plug-in infobar experiment, basically a revert of the revisions noted
in the bug. Revert was done manually due to refactoring, etc.
BUG=85988
Review URL: https://chromiumcodereview.appspot.com/9802030
TBR=cevans@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9963003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129777 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/attrition_experiments.h')
-rw-r--r-- | chrome/common/attrition_experiments.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/chrome/common/attrition_experiments.h b/chrome/common/attrition_experiments.h index 2cbe511..8de75f8 100644 --- a/chrome/common/attrition_experiments.h +++ b/chrome/common/attrition_experiments.h @@ -32,6 +32,17 @@ const wchar_t kEnterprise[] = L"GGRV"; // The brand code for showing more compact bubbles (experimental). const wchar_t kBrief[] = L"CHMA"; +// 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. 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 #endif // CHROME_COMMON_ATTRITION_EXPERIMENTS_H_ |