| Index: tools/variations/unittest_data/expected_output.h
|
| diff --git a/tools/variations/unittest_data/expected_output.h b/tools/variations/unittest_data/expected_output.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0fc4ee5f5738949b5c429c459bd47a2df45ee554
|
| --- /dev/null
|
| +++ b/tools/variations/unittest_data/expected_output.h
|
| @@ -0,0 +1,36 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +// GENERATED FROM THE SCHEMA DEFINITION AND DESCRIPTION IN
|
| +// fieldtrial_testing_config_schema.json
|
| +// test_config.json
|
| +// DO NOT EDIT.
|
| +
|
| +#ifndef TEST_OUPUT_H_
|
| +#define TEST_OUPUT_H_
|
| +
|
| +#include <cstddef>
|
| +
|
| +
|
| +struct FieldTrialGroupParams {
|
| + const char* const key;
|
| + const char* const value;
|
| +};
|
| +
|
| +struct FieldTrialTestingGroup {
|
| + const char* const study;
|
| + const char* const group_name;
|
| + const FieldTrialGroupParams * params;
|
| + const size_t params_size;
|
| +};
|
| +
|
| +struct FieldTrialTestingConfig {
|
| + const FieldTrialTestingGroup * groups;
|
| + const size_t groups_size;
|
| +};
|
| +
|
| +
|
| +extern const FieldTrialTestingConfig kFieldTrialConfig;
|
| +
|
| +#endif // TEST_OUPUT_H_
|
|
|