OLD | NEW |
(Empty) | |
| 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 |
| 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 #include "test_ouput.h" |
| 11 |
| 12 |
| 13 const FieldTrialGroupParams array_kFieldTrialConfig_params[] = { |
| 14 { |
| 15 "x", |
| 16 "1", |
| 17 }, |
| 18 { |
| 19 "y", |
| 20 "2", |
| 21 }, |
| 22 }; |
| 23 const FieldTrialTestingGroup array_kFieldTrialConfig_groups[] = { |
| 24 { |
| 25 "TestStudy1", |
| 26 "TestGroup1", |
| 27 NULL, |
| 28 0, |
| 29 }, |
| 30 { |
| 31 "TestStudy2", |
| 32 "TestGroup2", |
| 33 array_kFieldTrialConfig_params, |
| 34 2, |
| 35 }, |
| 36 }; |
| 37 const FieldTrialTestingConfig kFieldTrialConfig = { |
| 38 array_kFieldTrialConfig_groups, |
| 39 2, |
| 40 }; |
OLD | NEW |