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

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

Issue 2396103002: Create policy ReportArcStatus (Closed)
Patch Set: 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 f0070ed0c9bcd3ef71e6a55a89b6d933df13aea5..8158f6b01e84e88363794a2f20312ee3da91ca87 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
+# 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: 345
+# For your editing convenience: highest ID currently used: 347
#
# Placeholders:
# The following placeholder strings are automatically substituted:
@@ -4954,6 +4957,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': 347,
+ '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.''',
+ },
+ {
'name': 'HeartbeatEnabled',
'type': 'main',
'schema': { 'type': 'boolean' },

Powered by Google App Engine
This is Rietveld 408576698