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

Side by Side Diff: testing/variations/fieldtrial_testing_config_mac.json

Issue 1308693013: Pretty print field trials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 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
1 { 1 {
2 "AutofillFieldMetadata": [
3 {
4 "group_name": "Enabled"
5 }
6 ],
2 "AutomaticTabDiscarding": [ 7 "AutomaticTabDiscarding": [
3 { 8 {
4 "group_name": "Enabled" 9 "group_name": "Enabled"
5 } 10 }
6 ], 11 ],
7 "CaptivePortalInterstitial": [ 12 "CaptivePortalInterstitial": [
8 { 13 {
9 "group_name": "Enabled" 14 "group_name": "Enabled"
10 } 15 }
11 ], 16 ],
17 "ExtensionDeveloperModeWarning": [
18 {
19 "group_name": "Enabled"
20 }
21 ],
22 "ExtensionInstallVerification": [
23 {
24 "group_name": "Enforce"
25 }
26 ],
12 "InstanceID": [ 27 "InstanceID": [
13 { 28 {
14 "group_name": "Enabled" 29 "group_name": "Enabled"
15 } 30 }
16 ], 31 ],
17 "IntelligentSessionRestore": [ 32 "IntelligentSessionRestore": [
18 { 33 {
19 "group_name": "Enabled" 34 "group_name": "Enabled"
20 } 35 }
21 ],
22 "RefreshTokenDeviceId": [
23 {
24 "group_name": "Enabled"
25 }
26 ], 36 ],
27 "QUIC": [ 37 "QUIC": [
28 { 38 {
29 "group_name": "Enabled", 39 "group_name": "Enabled",
30 "params": { 40 "params": {
31 "alternate_protocol_probability_threshold": "0.01" 41 "alternate_protocol_probability_threshold": "0.01"
32 } 42 }
33 } 43 }
34 ], 44 ],
45 "RefreshTokenDeviceId": [
46 {
47 "group_name": "Enabled"
48 }
49 ],
35 "ReportCertificateErrors": [ 50 "ReportCertificateErrors": [
36 { 51 {
37 "group_name": "ShowAndPossiblySend", 52 "group_name": "ShowAndPossiblySend",
38 "params": { 53 "params": {
39 "sendingThreshold": "1.0" 54 "sendingThreshold": "1.0"
40 } 55 }
41 }, 56 },
42 { 57 {
43 "group_name": "ShowAndPossiblySend", 58 "group_name": "ShowAndPossiblySend",
44 "params": { 59 "params": {
45 "sendingThreshold": "-1.0" 60 "sendingThreshold": "-1.0"
46 } 61 }
47 }, 62 },
48 { 63 {
49 "group_name": "ShowAndPossiblySend", 64 "group_name": "ShowAndPossiblySend",
50 "params": { 65 "params": {
51 "sendingThreshold": "0.0" 66 "sendingThreshold": "0.0"
52 } 67 }
53 }, 68 },
54 { 69 {
55 "group_name": "ShowAndPossiblySend", 70 "group_name": "ShowAndPossiblySend",
56 "params": { 71 "params": {
57 "sendingThreshold": "abcdef" 72 "sendingThreshold": "abcdef"
58 } 73 }
59 }, 74 },
60 { 75 {
61 "group_name": "DontShowAndDontSend" 76 "group_name": "DontShowAndDontSend"
62 } 77 }
63 ], 78 ],
79 "SafeBrowsingReportPhishingErrorLink": [
80 {
81 "group_name": "Enabled"
82 },
83 {
84 "group_name": "Control"
85 },
86 {
87 "group_name": "Disabled"
88 }
89 ],
64 "SdchPersistence": [ 90 "SdchPersistence": [
65 { 91 {
66 "group_name": "Enabled" 92 "group_name": "Enabled"
67 } 93 }
68 ], 94 ],
69 "SyncHttpContentCompression": [ 95 "SyncHttpContentCompression": [
70 { 96 {
71 "group_name": "Enabled" 97 "group_name": "Enabled"
72 }, 98 },
73 { 99 {
74 "group_name": "Disabled" 100 "group_name": "Disabled"
75 } 101 }
76 ], 102 ],
77 "AutofillFieldMetadata": [ 103 "TabSyncByRecency": [
78 { 104 {
79 "group_name": "Enabled" 105 "group_name": "Enabled"
80 } 106 }
81 ], 107 ],
82 "UseDelayAgnosticAEC": [ 108 "UseDelayAgnosticAEC": [
83 { 109 {
84 "group_name": "DefaultEnabled" 110 "group_name": "DefaultEnabled"
85 } 111 }
86 ], 112 ],
87 "VarationsServiceControl": [ 113 "VarationsServiceControl": [
88 { 114 {
89 "group_name": "Interval_30min", 115 "group_name": "Interval_30min",
90 "params": { 116 "params": {
91 "fetch_period_min": "30" 117 "fetch_period_min": "30"
92 } 118 }
93 } 119 }
94 ],
95 "ExtensionInstallVerification": [
96 {
97 "group_name": "Enforce"
98 }
99 ],
100 "ExtensionDeveloperModeWarning": [
101 {
102 "group_name": "Enabled"
103 }
104 ],
105 "TabSyncByRecency": [
106 {
107 "group_name": "Enabled"
108 }
109 ],
110 "SafeBrowsingReportPhishingErrorLink": [
111 {
112 "group_name": "Enabled"
113 },
114 {
115 "group_name": "Control"
116 },
117 {
118 "group_name": "Disabled"
119 }
120 ] 120 ]
121 } 121 }
OLDNEW
« no previous file with comments | « testing/variations/fieldtrial_testing_config_linux.json ('k') | testing/variations/fieldtrial_testing_config_win.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698