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

Unified Diff: chrome/app/policy/policy_templates.json

Issue 5398001: Allow default desktop content settings to be managed via policy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding messages to the grd file Created 10 years 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: chrome/app/policy/policy_templates.json
diff --git a/chrome/app/policy/policy_templates.json b/chrome/app/policy/policy_templates.json
index 04e195c53233d752aec738da2afadbb37a9ebcbf..0fe72c8214eeecb56ca2b93cd4e4ffd5437687a1 100644
--- a/chrome/app/policy/policy_templates.json
+++ b/chrome/app/policy/policy_templates.json
@@ -506,6 +506,40 @@
]
},
{
+ 'name': 'ContentSettings',
+ 'type': 'group',
+ 'policies': [
+ {
+ 'name': 'DefaultNotificationSetting',
+ 'type': 'enum',
+ 'items': [
+ {'name': 'AllowNotifications', 'value': '0'},
+ {'name': 'BlockNotifications', 'value': '1'},
+ {'name': 'AskNotifications', 'value': '2'},
+ ],
+ 'supported_on': ['chrome.*:8-'],
danno 2010/12/16 13:56:42 10-
markusheintz_ 2010/12/16 17:29:30 Done.
+ 'annotations': {
+ 'features': {'dynamic_refresh': 1},
+ 'example_value': 0,
+ }
+ },
+ {
+ 'name': 'DefaultGeolocationSetting',
+ 'type': 'enum',
+ 'items': [
+ {'name': 'AllowGeolocation', 'value': '0'},
+ {'name': 'BlockGeolocation', 'value': '1'},
+ {'name': 'AskGeolocation', 'value': '2'},
+ ],
+ 'supported_on': ['chrome.*:8-'],
danno 2010/12/16 13:56:42 10-
markusheintz_ 2010/12/16 17:29:30 Done.
+ 'annotations': {
+ 'features': {'dynamic_refresh': 1},
+ 'example_value': 0,
+ }
+ },
+ ]
+ },
+ {
'name': 'ChromeFrameRendererSettings',
'type': 'group',
'policies': [{

Powered by Google App Engine
This is Rietveld 408576698