OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ | 5 #ifndef CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
6 #define CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ | 6 #define CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
7 | 7 |
8 namespace chrome_variations { | 8 namespace chrome_variations { |
9 | 9 |
10 // A list of Chrome Variation IDs. These IDs are associated with FieldTrials | 10 // A list of Chrome Variation IDs. These IDs are associated with FieldTrials |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
128 // reuse experiment IDs. | 128 // reuse experiment IDs. |
129 kSuggestTrialStarted2012Q4IDMin = 3310029, | 129 kSuggestTrialStarted2012Q4IDMin = 3310029, |
130 kSuggestTrialStarted2012Q4IDMax = 3310048, | 130 kSuggestTrialStarted2012Q4IDMax = 3310048, |
131 | 131 |
132 // Name: Instant channel field trial. | 132 // Name: Instant channel field trial. |
133 // Range: 3310050 - 3310059 | 133 // Range: 3310050 - 3310059 |
134 kChannelInstantIDBeta = 3310050, | 134 kChannelInstantIDBeta = 3310050, |
135 kChannelInstantIDDev = 3310051, | 135 kChannelInstantIDDev = 3310051, |
136 kChannelInstantIDStable = 3310052, | 136 kChannelInstantIDStable = 3310052, |
137 | 137 |
138 // Name: OmniboxSearchSuggestStarted2013Q1 | |
Mark P
2012/12/14 16:56:41
SuggestStarted
->
SuggestTrialStarted
Joel pointe
Bart N.
2012/12/14 17:06:07
Done. In other places it seems fine, so I'm changi
| |
139 // Range: 3310060 - 3310079 | |
140 // Suggest (Autocomplete) field trial, 20 IDs. This differs from | |
141 // the earlier omnibox suggest field trial in this file because | |
Mark P
2012/12/14 16:56:41
trial
->
trials
Bart N.
2012/12/14 17:06:07
Done.
| |
142 // we created a new trial (with a new name) in order to shuffle IDs. | |
143 // We assign new experiment IDs because it's a good practice not to | |
144 // reuse experiment IDs. | |
145 kSuggestTrialStarted2013Q1IDMin = 3310060, | |
Mark P
2012/12/14 16:56:41
Judging by the format of this file, it seems the p
Bart N.
2012/12/14 17:06:07
I'm confused about your comment.
I think we are j
Mark P
2012/12/14 17:09:55
Interesting. I didn't notice the kNextId had alre
Bart N.
2012/12/14 18:21:42
Acknowledged.
| |
146 kSuggestTrialStarted2013Q1IDMax = 3310079, | |
147 | |
138 // NEXT ID: When adding new IDs, please add them above this section, starting | 148 // NEXT ID: When adding new IDs, please add them above this section, starting |
139 // with the value of kNextID, and updating kNextID to (end of your reserved | 149 // with the value of kNextID, and updating kNextID to (end of your reserved |
140 // range) + 1. | 150 // range) + 1. |
141 kNextID = 3310060, | 151 kNextID = 3310080, |
142 | 152 |
143 | 153 |
144 // USABLE IDs END HERE. | 154 // USABLE IDs END HERE. |
145 // | 155 // |
146 // The largest possible Chrome variation ID in the reserved range. When | 156 // The largest possible Chrome variation ID in the reserved range. When |
147 // defining your variation IDs, DO NOT exceed this value. | 157 // defining your variation IDs, DO NOT exceed this value. |
148 kMaximumID = 3399999, | 158 kMaximumID = 3399999, |
149 }; | 159 }; |
150 | 160 |
151 } // namespace chrome_variations | 161 } // namespace chrome_variations |
152 | 162 |
153 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ | 163 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
OLD | NEW |