| 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_VARIATIONS_VARIATION_IDS_H_ |
| 6 #define CHROME_COMMON_METRICS_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 |
| 11 // for re-identification and analysis on Google servers. | 11 // for re-identification and analysis on Google servers. |
| 12 // These enums are to be used with the experiments_helper ID associoation API. | 12 // These enums are to be used with the experiments_helper ID associoation API. |
| 13 // | 13 // |
| 14 // The IDs are defined as part of an enum to prevent re-use. When adding your | 14 // The IDs are defined as part of an enum to prevent re-use. When adding your |
| 15 // own IDs, please respect the reserved IDs of other groups, as well as the | 15 // own IDs, please respect the reserved IDs of other groups, as well as the |
| 16 // global range of permitted values. | 16 // global range of permitted values. |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 // USABLE IDs END HERE. | 333 // USABLE IDs END HERE. |
| 334 // | 334 // |
| 335 // The largest possible Chrome variation ID in the reserved range. When | 335 // The largest possible Chrome variation ID in the reserved range. When |
| 336 // defining your variation IDs, DO NOT exceed this value - GWS will ignore | 336 // defining your variation IDs, DO NOT exceed this value - GWS will ignore |
| 337 // your experiment! | 337 // your experiment! |
| 338 MAXIMUM_ID = 3399999, | 338 MAXIMUM_ID = 3399999, |
| 339 }; | 339 }; |
| 340 | 340 |
| 341 } // namespace chrome_variations | 341 } // namespace chrome_variations |
| 342 | 342 |
| 343 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ | 343 #endif // CHROME_COMMON_VARIATIONS_VARIATION_IDS_H_ |
| OLD | NEW |