OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_VARIATIONS_ASSOCIATED_DATA_H_ | 5 #ifndef COMPONENTS_VARIATIONS_VARIATIONS_ASSOCIATED_DATA_H_ |
6 #define CHROME_COMMON_METRICS_VARIATIONS_VARIATIONS_ASSOCIATED_DATA_H_ | 6 #define COMPONENTS_VARIATIONS_VARIATIONS_ASSOCIATED_DATA_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/metrics/field_trial.h" | 11 #include "base/metrics/field_trial.h" |
12 | 12 |
13 // This file provides various helpers that extend the functionality around | 13 // This file provides various helpers that extend the functionality around |
14 // base::FieldTrial. | 14 // base::FieldTrial. |
15 // | 15 // |
16 // This includes several simple APIs to handle getting and setting additional | 16 // This includes several simple APIs to handle getting and setting additional |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 // Clears all of the mapped associations. | 145 // Clears all of the mapped associations. |
146 void ClearAllVariationIDs(); | 146 void ClearAllVariationIDs(); |
147 | 147 |
148 // Clears all of the associated params. | 148 // Clears all of the associated params. |
149 void ClearAllVariationParams(); | 149 void ClearAllVariationParams(); |
150 | 150 |
151 } // namespace testing | 151 } // namespace testing |
152 | 152 |
153 } // namespace chrome_variations | 153 } // namespace chrome_variations |
154 | 154 |
155 #endif // CHROME_COMMON_METRICS_VARIATIONS_VARIATIONS_ASSOCIATED_DATA_H_ | 155 #endif // COMPONENTS_VARIATIONS_VARIATIONS_ASSOCIATED_DATA_H_ |
OLD | NEW |