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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 // Name: Instant channel and extended field trials. | 132 // Name: Instant channel and extended field trials. |
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 kExtendedInstantIDCanaryGroupOne = 3310053, | 137 kExtendedInstantIDCanaryGroupOne = 3310053, |
138 kExtendedInstantIDCanaryControl = 3310054, | 138 kExtendedInstantIDCanaryControl = 3310054, |
139 kExtendedInstantIDDevGroupOne = 3310055, | 139 kExtendedInstantIDDevGroupOne = 3310055, |
140 kExtendedInstantIDDevControl = 3310056, | 140 kExtendedInstantIDDevControl = 3310056, |
141 | 141 |
| 142 // Name: OmniboxSearchSuggestTrialStarted2013Q1 |
| 143 // Range: 3310060 - 3310079 |
| 144 // Suggest (Autocomplete) field trial, 20 IDs. This differs from |
| 145 // the earlier omnibox suggest field trials in this file because |
| 146 // we created a new trial (with a new name) in order to shuffle IDs. |
| 147 // We assign new experiment IDs because it's a good practice not to |
| 148 // reuse experiment IDs. |
| 149 kSuggestTrialStarted2013Q1IDMin = 3310060, |
| 150 kSuggestTrialStarted2013Q1IDMax = 3310079, |
| 151 |
142 // NEXT ID: When adding new IDs, please add them above this section, starting | 152 // NEXT ID: When adding new IDs, please add them above this section, starting |
143 // with the value of kNextID, and updating kNextID to (end of your reserved | 153 // with the value of kNextID, and updating kNextID to (end of your reserved |
144 // range) + 1. | 154 // range) + 1. |
145 kNextID = 3310060, | 155 kNextID = 3310080, |
146 | 156 |
147 | 157 |
148 // USABLE IDs END HERE. | 158 // USABLE IDs END HERE. |
149 // | 159 // |
150 // The largest possible Chrome variation ID in the reserved range. When | 160 // The largest possible Chrome variation ID in the reserved range. When |
151 // defining your variation IDs, DO NOT exceed this value. | 161 // defining your variation IDs, DO NOT exceed this value. |
152 kMaximumID = 3399999, | 162 kMaximumID = 3399999, |
153 }; | 163 }; |
154 | 164 |
155 } // namespace chrome_variations | 165 } // namespace chrome_variations |
156 | 166 |
157 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ | 167 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
OLD | NEW |