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

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

Issue 1209743002: Generate a static struct from fieldtrial_testing_config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@codegen_nested_structs
Patch Set: add +x file permission Created 5 years, 5 months 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
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": "groups",
9 "type": "array",
10 "contents": {
11 "type_name": "FieldTrialTestingGroup",
12 "type": "struct",
13 "fields": [
14 {"field": "study", "type": "string"},
15 {"field": "group_name", "type": "string"},
16 {
17 "field": "params",
18 "type": "array",
19 "contents": {
20 "type_name": "FieldTrialGroupParams",
21 "type": "struct",
22 "fields": [
23 {"field": "key", "type": "string"},
24 {"field": "value", "type": "string"}
25 ]
26 }
27 }
28 ]
29 }
30 }]
31 }
OLDNEW
« no previous file with comments | « chrome/common/variations/fieldtrial_testing_config.gyp ('k') | testing/variations/fieldtrial_testing_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698