Commit 6468f888 authored by Peter K. Lee's avatar Peter K. Lee Committed by Commit Bot

Set all channels to 0% holdback for M70 launch

This CL is intended to be cherrypicked to M70 branch, so changes is
kept to be a minimum.

Bug: 882424
Cq-Include-Trybots: luci.chromium.try:ios-simulator-cronet;luci.chromium.try:ios-simulator-full-configs
Change-Id: Ibad7c24e5d080471f16ece252648cadd8e3346f8
Reviewed-on: https://chromium-review.googlesource.com/1216026Reviewed-by: default avatarAlexei Svitkine <asvitkine@chromium.org>
Commit-Queue: Peter Lee <pkl@chromium.org>
Cr-Commit-Position: refs/heads/master@{#589929}
parent 3913758d
......@@ -41,19 +41,8 @@ const variations::VariationID kNewUIExperimentTrialID = 3314529;
// on release channel.
base::FieldTrial::Probability UIRefreshHoldbackPercent(
version_info::Channel channel) {
switch (channel) {
// Stable Channel has 3% of users held back with Old UI.
case version_info::Channel::STABLE:
case version_info::Channel::UNKNOWN: // Same as DEFAULT
return 3;
// Beta Channel is 50/50 split between Old UI and New UI.
case version_info::Channel::BETA:
return 50;
// Canary and Dev is 100% rolled out with New UI.
case version_info::Channel::CANARY:
case version_info::Channel::DEV:
return 0;
}
// There will be no holdback for Old UI starting with M70 release.
return 0;
}
// Field trials do not take effect until configurations have been downloaded.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment