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

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

Issue 7537025: Add new Content settings type AUTO-SUBMIT-CERTIFICATE (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 4 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
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/policy/policy_templates.json
diff --git a/chrome/app/policy/policy_templates.json b/chrome/app/policy/policy_templates.json
index 5bad7e932785262a6a778b6a725f6216b38a9c68..cb4bde47394d69f39841d0b36c6d2b64a31ad832 100644
--- a/chrome/app/policy/policy_templates.json
+++ b/chrome/app/policy/policy_templates.json
@@ -94,7 +94,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: 101
+# For your editing convenience: highest ID currently used: 103
#
# Placeholders:
# The following placeholder strings are automatically substituted:
@@ -1272,6 +1272,38 @@
'desc': '''Allows you to set whether websites are allowed to track the users' physical location. Tracking the users' physical location can be allowed by default, denied by default or the user can be asked everytime a website requests the pysical location.''',
},
{
+ 'name': 'DefaultAutoSelectCertificateSetting',
+ 'type': 'int-enum',
+ 'items': [
+ {
+ 'name': 'AllowAutoSelectCertificate',
+ 'value': 1,
+ 'caption': '''Allows <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to automatically select client certificates.'''
+ },
+ {
+ 'name': 'AskAutoSelectCertificate',
+ 'value': 3,
+ 'caption': '''Asks the user to select a certificate whenever a site requests a client certificate.''',
+ },
+ ],
+ 'supported_on': ['chrome.*:15-', 'chrome_os:0.15-'],
+ 'features': {'dynamic_refresh': 1},
+ 'example_value': 1,
+ 'id': 102,
+ 'caption': '''Default setting for selecting client certificates''',
+ 'desc': '''Allows you to set whether a client certificate should be automatically selected by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> (if possible), the user should be asked to select a client certificate or no certificates should be sent to sites requesting client certificates.''',
+ },
+ {
+ 'name': 'AutoSelectCertificateForUrls',
+ 'type': 'list',
+ 'supported_on': ['chrome.*:15-', 'chrome_os:0.15-'],
+ 'features': {'dynamic_refresh': 1},
+ 'example_value': ['https://www.example.com', '[*.]example.edu'],
+ 'id': 103,
+ 'caption': '''Automatically select client certificates for these sites''',
+ 'desc': '''Allows you to specify a list of url patterns that specify sites for which <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> should automatically select a client certificates, if the site requests a certificate.''',
+ },
+ {
'name': 'CookiesAllowedForUrls',
'type': 'list',
'supported_on': ['chrome.*:11-', 'chrome_os:0.11-'],
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698