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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 IOS_TABLET_NEW_NTP_CONTROL_2_BETA = 3312107, | 297 IOS_TABLET_NEW_NTP_CONTROL_2_BETA = 3312107, |
298 IOS_TABLET_NEW_NTP_OMNIBOX_HINT_STABLE = 3312108, | 298 IOS_TABLET_NEW_NTP_OMNIBOX_HINT_STABLE = 3312108, |
299 IOS_TABLET_NEW_NTP_CONTROL_1_STABLE = 3312109, | 299 IOS_TABLET_NEW_NTP_CONTROL_1_STABLE = 3312109, |
300 IOS_TABLET_NEW_NTP_FAKEBOX_HINT_STABLE = 3312110, | 300 IOS_TABLET_NEW_NTP_FAKEBOX_HINT_STABLE = 3312110, |
301 IOS_TABLET_NEW_NTP_CONTROL_2_STABLE = 3312111, | 301 IOS_TABLET_NEW_NTP_CONTROL_2_STABLE = 3312111, |
302 | 302 |
303 // ExtensionInstallPrompt field trial. | 303 // ExtensionInstallPrompt field trial. |
304 EXTENSION_INSTALL_PROMPT_EXPERIMENT_ID_MIN = 3312051, | 304 EXTENSION_INSTALL_PROMPT_EXPERIMENT_ID_MIN = 3312051, |
305 EXTENSION_INSTALL_PROMPT_EXPERIMENT_ID_MAX = 3312099, | 305 EXTENSION_INSTALL_PROMPT_EXPERIMENT_ID_MAX = 3312099, |
306 | 306 |
| 307 // <link rel=prefetch> field trial. |
| 308 LINK_REL_PREFETCH_ENABLED_1 = 3312118, |
| 309 LINK_REL_PREFETCH_ENABLED_2 = 3312119, |
| 310 LINK_REL_PREFETCH_DISABLED_1 = 3312120, |
| 311 LINK_REL_PREFETCH_DISABLED_2 = 3312121, |
| 312 |
307 // NEXT ID: When adding new IDs, please add them above this section, starting | 313 // NEXT ID: When adding new IDs, please add them above this section, starting |
308 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved | 314 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved |
309 // range) + 1. | 315 // range) + 1. |
310 NEXT_ID = 3312118, | 316 NEXT_ID = 3312122, |
311 | 317 |
312 // USABLE IDs END HERE. | 318 // USABLE IDs END HERE. |
313 // | 319 // |
314 // The largest possible Chrome variation ID in the reserved range. When | 320 // The largest possible Chrome variation ID in the reserved range. When |
315 // defining your variation IDs, DO NOT exceed this value - GWS will ignore | 321 // defining your variation IDs, DO NOT exceed this value - GWS will ignore |
316 // your experiment! | 322 // your experiment! |
317 MAXIMUM_ID = 3399999, | 323 MAXIMUM_ID = 3399999, |
318 }; | 324 }; |
319 | 325 |
320 } // namespace chrome_variations | 326 } // namespace chrome_variations |
321 | 327 |
322 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ | 328 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
OLD | NEW |