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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
170 | 170 |
171 // BookmarkPrompt field trial. | 171 // BookmarkPrompt field trial. |
172 BOOKMARK_PROMPT_TRIAL_DEFAULT = 3310186, | 172 BOOKMARK_PROMPT_TRIAL_DEFAULT = 3310186, |
173 BOOKMARK_PROMPT_TRIAL_CONTROL = 3310187, | 173 BOOKMARK_PROMPT_TRIAL_CONTROL = 3310187, |
174 BOOKMARK_PROMPT_TRIAL_EXPERIMENT = 3310188, | 174 BOOKMARK_PROMPT_TRIAL_EXPERIMENT = 3310188, |
175 | 175 |
176 // iOS tour trial. | 176 // iOS tour trial. |
177 IOS_TOUR_DEFAULT = 3310189, | 177 IOS_TOUR_DEFAULT = 3310189, |
178 IOS_TOUR_EXPERIMENT = 3310190, | 178 IOS_TOUR_EXPERIMENT = 3310190, |
179 | 179 |
180 // Name: SendFeedbackLinkLocation. | |
181 // Field trial to test various locations, and strings | |
182 // for submitting feedback. | |
183 SEND_FEEDBACK_LINK_LOCATION_CONTROL = 3310200, | |
184 SEND_FEEDBACK_LINK_LOCATION_CONTROL_CROS = 3310201, | |
185 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_DEV = 3310202, | |
186 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_STABLE = 3310203, | |
187 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_BETA = 3310204, | |
188 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_CROS_DEV = 3310205, | |
189 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_CROS_STABLE = 3310206, | |
190 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_CROS_BETA = 3310207, | |
191 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_DEV = 3310208, | |
192 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_STABLE = 3310209, | |
193 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_BETA = 3310210, | |
194 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_CROS_DEV = 3310211, | |
195 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_CROS_STABLE = 3310212, | |
196 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_CROS_BETA = 3310213, | |
197 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_DEV = 3310214, | |
198 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_STABLE = 3310215, | |
199 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_BETA = 3310216, | |
200 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_CROS_DEV = 3310217, | |
201 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_CROS_STABLE = 3310218, | |
202 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_CROS_BETA = 3310219, | |
203 SEND_FEEDBACK_LINK_LOCATION_DEFAULT = 3310249, | |
SteveT
2013/03/20 15:19:44
What's the deal with this being 3310249 when the o
Harry McCleave
2013/03/20 21:30:55
Belt & suspenders (just being sure), unless I have
| |
204 | |
180 // NEXT ID: When adding new IDs, please add them above this section, starting | 205 // NEXT ID: When adding new IDs, please add them above this section, starting |
181 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved | 206 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved |
182 // range) + 1. | 207 // range) + 1. |
183 NEXT_ID = 3310191, | 208 NEXT_ID = 3310250, |
184 | 209 |
185 // USABLE IDs END HERE. | 210 // USABLE IDs END HERE. |
186 // | 211 // |
187 // The largest possible Chrome variation ID in the reserved range. When | 212 // The largest possible Chrome variation ID in the reserved range. When |
188 // defining your variation IDs, DO NOT exceed this value - GWS will ignore | 213 // defining your variation IDs, DO NOT exceed this value - GWS will ignore |
189 // your experiment! | 214 // your experiment! |
190 MAXIMUM_ID = 3399999, | 215 MAXIMUM_ID = 3399999, |
191 }; | 216 }; |
192 | 217 |
193 } // namespace chrome_variations | 218 } // namespace chrome_variations |
194 | 219 |
195 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ | 220 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
OLD | NEW |