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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/settings/managed_storage/schema.json
diff --git a/chrome/test/data/extensions/api_test/settings/managed_storage/schema.json b/chrome/test/data/extensions/api_test/settings/managed_storage/schema.json
new file mode 100644
index 0000000000000000000000000000000000000000..4037d1fc11ff203d146005f2736c4178ac9d2f64
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/settings/managed_storage/schema.json
@@ -0,0 +1,25 @@
+{
+ "type": "object",
+ "properties": {
+ "string-policy": { "type": "string" },
+ "int-policy": { "type": "integer" },
+ "double-policy": { "type": "number" },
+ "boolean-policy": { "type": "boolean" },
+ "list-policy": {
+ "type": "array",
+ "items": { "type": "string" }
+ },
+ "dict-policy": {
+ "type": "object",
+ "properties": {
+ "list": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": { "type": "integer" }
+ }
+ }
+ }
+ }
+ }
+}
« 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