OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_VARIATIONS_VARIATIONS_URL_CONSTANTS_H_ | 5 #include "components/variations/synthetic_trials.h" |
6 #define COMPONENTS_VARIATIONS_VARIATIONS_URL_CONSTANTS_H_ | |
7 | 6 |
8 namespace variations { | 7 namespace variations { |
9 | 8 |
10 extern const char kDefaultServerUrl[]; | 9 SyntheticTrialGroup::SyntheticTrialGroup(uint32_t trial, uint32_t group) { |
| 10 id.name = trial; |
| 11 id.group = group; |
| 12 } |
| 13 |
| 14 SyntheticTrialGroup::~SyntheticTrialGroup() {} |
11 | 15 |
12 } // namespace variations | 16 } // namespace variations |
13 | |
14 #endif // COMPONENTS_VARIATIONS_VARIATIONS_URL_CONSTANTS_H_ | |
OLD | NEW |