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

Side by Side Diff: chrome/test/data/extensions/api_test/settings/managed_storage/schema.json

Issue 56623005: Policy providers all get a SchemaRegistry to work with. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chrome-policy-schema-9-purge-with-callback
Patch Set: rebase Created 7 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/test/data/extensions/api_test/settings/managed_storage/manifest.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "type": "object",
3 "properties": {
4 "string-policy": { "type": "string" },
5 "int-policy": { "type": "integer" },
6 "double-policy": { "type": "number" },
7 "boolean-policy": { "type": "boolean" },
8 "list-policy": {
9 "type": "array",
10 "items": { "type": "string" }
11 },
12 "dict-policy": {
13 "type": "object",
14 "properties": {
15 "list": {
16 "type": "array",
17 "items": {
18 "type": "object",
19 "additionalProperties": { "type": "integer" }
20 }
21 }
22 }
23 }
24 }
25 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/settings/managed_storage/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698