OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
Alexei Svitkine (slow)
2015/07/09 19:48:27
This test will fail in 2016, since the year seems
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // GENERATED FROM THE SCHEMA DEFINITION AND DESCRIPTION IN | |
6 // fieldtrial_testing_config_schema.json | |
7 // test_config.json | |
8 // DO NOT EDIT. | |
9 | |
10 #ifndef TEST_OUPUT_H_ | |
11 #define TEST_OUPUT_H_ | |
12 | |
13 #include <cstddef> | |
14 | |
15 | |
16 struct FieldTrialGroupParams { | |
17 const char* const key; | |
18 const char* const value; | |
19 }; | |
20 | |
21 struct FieldTrialTestingGroup { | |
22 const char* const study; | |
23 const char* const group_name; | |
24 const FieldTrialGroupParams * params; | |
25 const size_t params_size; | |
26 }; | |
27 | |
28 struct FieldTrialTestingConfig { | |
29 const FieldTrialTestingGroup * groups; | |
30 const size_t groups_size; | |
31 }; | |
32 | |
33 | |
34 extern const FieldTrialTestingConfig kFieldTrialConfig; | |
35 | |
36 #endif // TEST_OUPUT_H_ | |
OLD | NEW |