| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 | 228 |
| 229 // CookieRetentionPriorityStudy field trial. | 229 // CookieRetentionPriorityStudy field trial. |
| 230 COOKIE_RETENTION_PRIORITY_STUDY_EXPERIMENT_OFF = 3310869, | 230 COOKIE_RETENTION_PRIORITY_STUDY_EXPERIMENT_OFF = 3310869, |
| 231 COOKIE_RETENTION_PRIORITY_STUDY_EXPERIMENT_ON = 3310870, | 231 COOKIE_RETENTION_PRIORITY_STUDY_EXPERIMENT_ON = 3310870, |
| 232 | 232 |
| 233 // QUIC field trial. | 233 // QUIC field trial. |
| 234 QUIC_FIELD_TRIAL_ID_MIN = 3311871, | 234 QUIC_FIELD_TRIAL_ID_MIN = 3311871, |
| 235 QUIC_FIELD_TRIAL_ID_MAX = 3311920, | 235 QUIC_FIELD_TRIAL_ID_MAX = 3311920, |
| 236 | 236 |
| 237 // Android Native NTP trial. | 237 // Android Native NTP trial. |
| 238 // Range: 3311921 - 3311930 | 238 // Range: 3311921 - 3311940 |
| 239 ANDROID_NATIVE_NTP_CONTROL_0 = 3311921, | 239 ANDROID_DEV_BETA_NATIVE_NTP_CONTROL_0 = 3311921, |
| 240 ANDROID_NATIVE_NTP_CONTROL_1 = 3311922, | 240 ANDROID_DEV_BETA_NATIVE_NTP_CONTROL_1 = 3311922, |
| 241 ANDROID_NATIVE_NTP_TWO_URL_BARS = 3311923, | 241 ANDROID_DEV_BETA_NATIVE_NTP_TWO_URL_BARS = 3311923, |
| 242 ANDROID_NATIVE_NTP_ONE_URL_BAR = 3311924, | 242 ANDROID_DEV_BETA_NATIVE_NTP_ONE_URL_BAR = 3311924, |
| 243 ANDROID_TABLET_NATIVE_NTP_CONTROL = 3311925, | 243 ANDROID_DEV_BETA_TABLET_NATIVE_NTP_CONTROL = 3311925, |
| 244 ANDROID_TABLET_NATIVE_NTP_ONE_URL_BAR = 3311926, | 244 ANDROID_DEV_BETA_TABLET_NATIVE_NTP_ONE_URL_BAR = 3311926, |
| 245 ANDROID_STABLE_NATIVE_NTP_CONTROL_0 = 3311927, |
| 246 ANDROID_STABLE_NATIVE_NTP_CONTROL_1 = 3311928, |
| 247 ANDROID_STABLE_NATIVE_NTP_TWO_URL_BARS = 3311929, |
| 248 ANDROID_STABLE_NATIVE_NTP_ONE_URL_BAR = 3311930, |
| 249 ANDROID_STABLE_TABLET_NATIVE_NTP_CONTROL = 3311931, |
| 250 ANDROID_STABLE_TABLET_NATIVE_NTP_ONE_URL_BAR = 3311932, |
| 245 | 251 |
| 246 // NEXT ID: When adding new IDs, please add them above this section, starting | 252 // NEXT ID: When adding new IDs, please add them above this section, starting |
| 247 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved | 253 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved |
| 248 // range) + 1. | 254 // range) + 1. |
| 249 NEXT_ID = 3311931, | 255 NEXT_ID = 3311941, |
| 250 | 256 |
| 251 // USABLE IDs END HERE. | 257 // USABLE IDs END HERE. |
| 252 // | 258 // |
| 253 // The largest possible Chrome variation ID in the reserved range. When | 259 // The largest possible Chrome variation ID in the reserved range. When |
| 254 // defining your variation IDs, DO NOT exceed this value - GWS will ignore | 260 // defining your variation IDs, DO NOT exceed this value - GWS will ignore |
| 255 // your experiment! | 261 // your experiment! |
| 256 MAXIMUM_ID = 3399999, | 262 MAXIMUM_ID = 3399999, |
| 257 }; | 263 }; |
| 258 | 264 |
| 259 } // namespace chrome_variations | 265 } // namespace chrome_variations |
| 260 | 266 |
| 261 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ | 267 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
| OLD | NEW |