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

Unified Diff: components/policy/resources/policy_templates.json

Issue 307993005: Enable the ManagedBookmarks policy on all platforms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: components/policy/resources/policy_templates.json
diff --git a/components/policy/resources/policy_templates.json b/components/policy/resources/policy_templates.json
index d2b53921b89e88af7f67ff8961f053e10ee2a2ca..fcd579961dbc89cc49f3017b8b254c0e83ce6329 100644
--- a/components/policy/resources/policy_templates.json
+++ b/components/policy/resources/policy_templates.json
@@ -6262,13 +6262,23 @@
'type': 'array',
'items': {
'type': 'object',
+ 'id': 'BookmarkType',
'properties': {
'name': { 'type': 'string' },
'url': { 'type': 'string' },
+ 'children': {
+ 'type': 'array',
+ 'items': { '$ref': 'BookmarkType' },
+ },
},
},
},
- 'supported_on': ['android:30-', 'ios:35-'],
+ 'supported_on': [
+ 'android:30-',
+ 'ios:35-',
+ 'chrome.*:37-',
+ 'chrome_os:37-',
+ ],
'features': {
'dynamic_refresh': True,
'per_profile': True,

Powered by Google App Engine
This is Rietveld 408576698