OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_VARIATIONS_VARIATION_IDS_H_ | 5 #ifndef CHROME_COMMON_VARIATIONS_VARIATION_IDS_H_ |
6 #define CHROME_COMMON_VARIATIONS_VARIATION_IDS_H_ | 6 #define CHROME_COMMON_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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 // Field trials can be queried directly from webrtc via webrtc::field_trial. | 338 // Field trials can be queried directly from webrtc via webrtc::field_trial. |
339 // Thus new trials are added without explicit CLs in chromium repository. | 339 // Thus new trials are added without explicit CLs in chromium repository. |
340 // This is the range of ids reserved for those trials. | 340 // This is the range of ids reserved for those trials. |
341 WEBRTC_FIELD_TRIAL_RANGE_ID_MIN = 3312378, | 341 WEBRTC_FIELD_TRIAL_RANGE_ID_MIN = 3312378, |
342 WEBRTC_FIELD_TRIAL_RANGE_ID_MAX = 3312477, | 342 WEBRTC_FIELD_TRIAL_RANGE_ID_MAX = 3312477, |
343 | 343 |
344 // SDCH compression field trial. | 344 // SDCH compression field trial. |
345 SDCH_ENABLED_ALL = 3312478, | 345 SDCH_ENABLED_ALL = 3312478, |
346 SDCH_ENABLED_HTTP_ONLY = 3312479, | 346 SDCH_ENABLED_HTTP_ONLY = 3312479, |
347 | 347 |
| 348 // TCP FastOpen field trial. |
| 349 TCP_FASTOPEN_CONTROL = 3312480, |
| 350 TCP_FASTOPEN_ENABLED_HTTPS_ONLY = 3312481, |
| 351 |
348 // NEXT ID: When adding new IDs, please add them above this section, starting | 352 // NEXT ID: When adding new IDs, please add them above this section, starting |
349 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved | 353 // with the value of NEXT_ID, and updating NEXT_ID to (end of your reserved |
350 // range) + 1. | 354 // range) + 1. |
351 NEXT_ID = 3312480, | 355 NEXT_ID = 3312482, |
352 | 356 |
353 // USABLE IDs END HERE. | 357 // USABLE IDs END HERE. |
354 // | 358 // |
355 // The largest possible Chrome variation ID in the reserved range. When | 359 // The largest possible Chrome variation ID in the reserved range. When |
356 // defining your variation IDs, DO NOT exceed this value - GWS will ignore | 360 // defining your variation IDs, DO NOT exceed this value - GWS will ignore |
357 // your experiment! | 361 // your experiment! |
358 MAXIMUM_ID = 3399999, | 362 MAXIMUM_ID = 3399999, |
359 }; | 363 }; |
360 | 364 |
361 } // namespace chrome_variations | 365 } // namespace chrome_variations |
362 | 366 |
363 #endif // CHROME_COMMON_VARIATIONS_VARIATION_IDS_H_ | 367 #endif // CHROME_COMMON_VARIATIONS_VARIATION_IDS_H_ |
OLD | NEW |