| Index: components/variations/synthetic_trials.cc
|
| diff --git a/components/variations/variations_url_constants.h b/components/variations/synthetic_trials.cc
|
| similarity index 50%
|
| copy from components/variations/variations_url_constants.h
|
| copy to components/variations/synthetic_trials.cc
|
| index ffff0dcaa7490f6777db374b1fad5fe8171bec16..228ca44387a0135152bb1c1a8768ac5ae89416d7 100644
|
| --- a/components/variations/variations_url_constants.h
|
| +++ b/components/variations/synthetic_trials.cc
|
| @@ -2,13 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef COMPONENTS_VARIATIONS_VARIATIONS_URL_CONSTANTS_H_
|
| -#define COMPONENTS_VARIATIONS_VARIATIONS_URL_CONSTANTS_H_
|
| +#include "components/variations/synthetic_trials.h"
|
|
|
| namespace variations {
|
|
|
| -extern const char kDefaultServerUrl[];
|
| +SyntheticTrialGroup::SyntheticTrialGroup(uint32_t trial, uint32_t group) {
|
| + id.name = trial;
|
| + id.group = group;
|
| +}
|
|
|
| -} // namespace variations
|
| +SyntheticTrialGroup::~SyntheticTrialGroup() {}
|
|
|
| -#endif // COMPONENTS_VARIATIONS_VARIATIONS_URL_CONSTANTS_H_
|
| +} // namespace variations
|
|
|