| Index: chrome/common/variations/fieldtrial_testing_config_schema.json
|
| diff --git a/chrome/common/variations/fieldtrial_testing_config_schema.json b/chrome/common/variations/fieldtrial_testing_config_schema.json
|
| index 3f165735518e7db198091393739d3099e71b1431..1b7c43c4592c295a753a40597b79ca218411d5ec 100644
|
| --- a/chrome/common/variations/fieldtrial_testing_config_schema.json
|
| +++ b/chrome/common/variations/fieldtrial_testing_config_schema.json
|
| @@ -5,37 +5,47 @@
|
| {
|
| "type_name": "FieldTrialTestingConfig",
|
| "schema": [{
|
| - "field": "groups",
|
| + "field": "trials",
|
| "type": "array",
|
| "contents": {
|
| - "type_name": "FieldTrialTestingGroup",
|
| + "type_name": "FieldTrialTestingTrial",
|
| "type": "struct",
|
| "fields": [
|
| - {"field": "study", "type": "string"},
|
| - {"field": "group_name", "type": "string"},
|
| + {"field": "name", "type": "string"},
|
| {
|
| - "field": "params",
|
| + "field": "groups",
|
| "type": "array",
|
| "contents": {
|
| - "type_name": "FieldTrialGroupParams",
|
| + "type_name": "FieldTrialTestingGroup",
|
| "type": "struct",
|
| "fields": [
|
| - {"field": "key", "type": "string"},
|
| - {"field": "value", "type": "string"}
|
| + {"field": "name", "type": "string"},
|
| + {
|
| + "field": "params",
|
| + "type": "array",
|
| + "contents": {
|
| + "type_name": "FieldTrialTestingGroupParams",
|
| + "type": "struct",
|
| + "fields": [
|
| + {"field": "key", "type": "string"},
|
| + {"field": "value", "type": "string"}
|
| + ]
|
| + }
|
| + },
|
| + {
|
| + "field": "enable_features",
|
| + "type": "array",
|
| + "contents": { "type": "string"}
|
| + },
|
| + {
|
| + "field": "disable_features",
|
| + "type": "array",
|
| + "contents": { "type": "string"}
|
| + }
|
| ]
|
| }
|
| - },
|
| - {
|
| - "field": "enable_features",
|
| - "type": "array",
|
| - "contents": { "type": "string"}
|
| - },
|
| - {
|
| - "field": "disable_features",
|
| - "type": "array",
|
| - "contents": { "type": "string"}
|
| }
|
| ]
|
| }
|
| }]
|
| -}
|
| +}
|
|
|