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_VARIATION_IDS_H_ | 5 #ifndef CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
6 #define CHROME_COMMON_METRICS_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 |
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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 | 112 |
113 // USABLE IDs END HERE. | 113 // USABLE IDs END HERE. |
114 // | 114 // |
115 // The largest possible Chrome variation ID in the reserved range. When | 115 // The largest possible Chrome variation ID in the reserved range. When |
116 // defining your variation IDs, DO NOT exceed this value. | 116 // defining your variation IDs, DO NOT exceed this value. |
117 kMaximumID = 3399999, | 117 kMaximumID = 3399999, |
118 }; | 118 }; |
119 | 119 |
120 } // namespace chrome_variations | 120 } // namespace chrome_variations |
121 | 121 |
122 #endif // CHROME_COMMON_METRICS_VARIATION_IDS_H_ | 122 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATION_IDS_H_ |
OLD | NEW |