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

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

Issue 2396103002: Create policy ReportArcStatus (Closed)
Patch Set: Fix pref-mapping test Created 4 years, 2 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 3f279ac87bffff37b8cacc44a752872e56ddaf4a..1df05b4996efc9c973ed4af9e83a0669745cce60 100644
--- a/components/policy/resources/policy_templates.json
+++ b/components/policy/resources/policy_templates.json
@@ -120,6 +120,9 @@
# 'can_be_recommended' can be set to True to include that policy in the
# recommended policies templates. This only affects the template generation;
# all policies can be at the recommended level. The default is False.
+# 'per_profile' controls whether a user policy applies to every user logging
+# into the browser or only one profile. This only affects the template
bartfab (slow) 2016/10/10 15:49:17 Nit: Please remove "this only affects the template
phweiss 2016/10/11 12:14:39 Done.
+# generation.
#
# The 'max_size' key is used to specify the maximal size of the external data
# that a policy can reference, in bytes. This annotation is compulsory for
@@ -137,7 +140,7 @@
# persistent IDs for all fields (but not for groups!) are needed. These are
# specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
# because doing so would break the deployed wire format!
-# For your editing convenience: highest ID currently used: 347
+# For your editing convenience: highest ID currently used: 348
#
# Placeholders:
# The following placeholder strings are automatically substituted:
@@ -4971,6 +4974,26 @@
'arc_support': 'This policy has no effect on the logging done by Android.',
},
{
+ 'name': 'ReportArcStatus',
+ 'type': 'main',
+ 'schema': { 'type': 'boolean' },
+ 'supported_on': ['chrome_os:55-'],
+ 'features': {
+ 'dynamic_refresh': True,
+ 'per_profile': True,
+ },
+ 'example_value': False,
+ 'id': 348,
+ 'caption': '''Report information about status of Android''',
+ 'tags': ['admin-sharing'],
+ 'desc': '''Report information about the status of Android.
+
+ If the policy is set to false, the information will not be reported.
+ If set to true or left unset, the information will be reported.
+
+ This policy only applies if Android apps are enabled.''',
+ },
bartfab (slow) 2016/10/10 15:49:17 Nit 1: Where is that status reported to? Nit 2: Do
phweiss 2016/10/11 12:14:39 Done.
+ {
'name': 'HeartbeatEnabled',
'type': 'main',
'schema': { 'type': 'boolean' },

Powered by Google App Engine
This is Rietveld 408576698