diff options
author | jeremycho@chromium.org <jeremycho@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-09 21:57:02 +0000 |
---|---|---|
committer | jeremycho@chromium.org <jeremycho@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-09 21:57:02 +0000 |
commit | 0f73d297a9698d9eb43119ecd96f0c833e3d5d85 (patch) | |
tree | 70e4a3fdf19a04ca9d62a71e168167fe73e0d5a9 /chrome/common/metrics/variations | |
parent | 0d09b66e784ca934b21126c6baf68ba7c7874852 (diff) | |
download | chromium_src-0f73d297a9698d9eb43119ecd96f0c833e3d5d85.zip chromium_src-0f73d297a9698d9eb43119ecd96f0c833e3d5d85.tar.gz chromium_src-0f73d297a9698d9eb43119ecd96f0c833e3d5d85.tar.bz2 |
Reserve Finch variation IDs for a new Instant field trial to compare beta, dev, and stable channel user metrics. Include client-side change to query for the trial.
BUG=160132
Review URL: https://chromiumcodereview.appspot.com/11377042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166985 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/metrics/variations')
-rw-r--r-- | chrome/common/metrics/variations/variation_ids.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/common/metrics/variations/variation_ids.h b/chrome/common/metrics/variations/variation_ids.h index cc2c2b1..e2f33e9 100644 --- a/chrome/common/metrics/variations/variation_ids.h +++ b/chrome/common/metrics/variations/variation_ids.h @@ -129,10 +129,16 @@ enum VariationID { kSuggestTrialStarted2012Q4IDMin = 3310029, kSuggestTrialStarted2012Q4IDMax = 3310048, + // Name: Instant channel field trial. + // Range: 3310050 - 3310059 + kChannelInstantIDBeta = 3310050, + kChannelInstantIDDev = 3310051, + kChannelInstantIDStable = 3310052, + // NEXT ID: When adding new IDs, please add them above this section, starting // with the value of kNextID, and updating kNextID to (end of your reserved // range) + 1. - kNextID = 3310050, + kNextID = 3310060, // USABLE IDs END HERE. |