Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Side by Side Diff: chrome/common/variations/fieldtrial_testing_config_schema.json

Issue 2465953002: Move Field Trial Utils from chrome/common/variations to components/variations/field_trial_util (Closed)
Patch Set: Moved to components/variations/field_trial_util and chrome switches Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/variations/BUILD.gn ('k') | chrome/common/variations/variations_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/common/variations/BUILD.gn ('k') | chrome/common/variations/variations_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698