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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 // For more details, see | 166 // For more details, see |
167 // chrome/browser/omnibox/omnibox_field_trial.{h,cc}. | 167 // chrome/browser/omnibox/omnibox_field_trial.{h,cc}. |
168 AUTOCOMPLETE_DYNAMIC_FIELD_TRIAL_ID_MIN = 3310086, | 168 AUTOCOMPLETE_DYNAMIC_FIELD_TRIAL_ID_MIN = 3310086, |
169 AUTOCOMPLETE_DYANMIC_FIELD_TRIAL_ID_MAX = 3310185, | 169 AUTOCOMPLETE_DYANMIC_FIELD_TRIAL_ID_MAX = 3310185, |
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 // Name: SendFeedbackLinkLocation. |
| 177 // Field trial to test various locations, and strings |
| 178 // for submitting feedback. |
| 179 SEND_FEEDBACK_LINK_LOCATION_CONTROL = 3310200, |
| 180 SEND_FEEDBACK_LINK_LOCATION_CONTROL_CROS = 3310201, |
| 181 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_DEV = 3310202, |
| 182 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_STABLE = 3310203, |
| 183 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_BETA = 3310204, |
| 184 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_CROS_DEV = 3310205, |
| 185 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_CROS_STABLE = 3310206, |
| 186 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_CROS_BETA = 3310207, |
| 187 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_DEV = 3310208, |
| 188 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_STABLE = 3310209, |
| 189 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_BETA = 3310210, |
| 190 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_CROS_DEV = 3310211, |
| 191 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_CROS_STABLE = 3310212, |
| 192 SEND_FEEDBACK_LINK_LOCATION_ALT_LOCATION_CROS_BETA = 3310213, |
| 193 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_DEV = 3310214, |
| 194 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_STABLE = 3310215, |
| 195 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_BETA = 3310216, |
| 196 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_CROS_DEV = 3310217, |
| 197 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_CROS_STABLE = 3310218, |
| 198 SEND_FEEDBACK_LINK_LOCATION_ALT_TEXT_AND_LOCATION_CROS_BETA = 3310219, |
| 199 SEND_FEEDBACK_LINK_LOCATION_DEFAULT = 3310249, |
| 200 |
176 // NEXT ID: When adding new IDs, please add them above this section, starting | 201 // NEXT ID: When adding new IDs, please add them above this section, starting |
177 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved | 202 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved |
178 // range) + 1. | 203 // range) + 1. |
179 NEXT_ID = 3310189, | 204 NEXT_ID = 3310250, |
180 | 205 |
181 // USABLE IDs END HERE. | 206 // USABLE IDs END HERE. |
182 // | 207 // |
183 // The largest possible Chrome variation ID in the reserved range. When | 208 // The largest possible Chrome variation ID in the reserved range. When |
184 // defining your variation IDs, DO NOT exceed this value - GWS will ignore | 209 // defining your variation IDs, DO NOT exceed this value - GWS will ignore |
185 // your experiment! | 210 // your experiment! |
186 MAXIMUM_ID = 3399999, | 211 MAXIMUM_ID = 3399999, |
187 }; | 212 }; |
188 | 213 |
189 } // namespace chrome_variations | 214 } // namespace chrome_variations |
190 | 215 |
191 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ | 216 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
OLD | NEW |