| 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 { | |
| 6 "type_name": "FieldTrialTestingConfig", | |
| 7 "schema": [{ | |
| 8 "field": "studies", | |
| 9 "type": "array", | |
| 10 "contents": { | |
| 11 "type_name": "FieldTrialTestingStudy", | |
| 12 "type": "struct", | |
| 13 "fields": [ | |
| 14 {"field": "name", "type": "string"}, | |
| 15 { | |
| 16 "field": "experiments", | |
| 17 "type": "array", | |
| 18 "contents": { | |
| 19 "type_name": "FieldTrialTestingExperiment", | |
| 20 "type": "struct", | |
| 21 "fields": [ | |
| 22 {"field": "name", "type": "string"}, | |
| 23 { | |
| 24 "field": "params", | |
| 25 "type": "array", | |
| 26 "contents": { | |
| 27 "type_name": "FieldTrialTestingExperimentParams", | |
| 28 "type": "struct", | |
| 29 "fields": [ | |
| 30 {"field": "key", "type": "string"}, | |
| 31 {"field": "value", "type": "string"} | |
| 32 ] | |
| 33 } | |
| 34 }, | |
| 35 { | |
| 36 "field": "enable_features", | |
| 37 "type": "array", | |
| 38 "contents": { "type": "string"} | |
| 39 }, | |
| 40 { | |
| 41 "field": "disable_features", | |
| 42 "type": "array", | |
| 43 "contents": { "type": "string"} | |
| 44 }, | |
| 45 { | |
| 46 "field": "forcing_flag", | |
| 47 "type": "string" | |
| 48 } | |
| 49 ] | |
| 50 } | |
| 51 } | |
| 52 ] | |
| 53 } | |
| 54 }] | |
| 55 } | |
| OLD | NEW |