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

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

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 cc26e75ca6777ad4a8cd073985c35a800855f6ec..1c194d926ca52c463b11aa5f1880f74238bca365 100644
--- a/components/policy/resources/policy_templates.json
+++ b/components/policy/resources/policy_templates.json
@@ -123,7 +123,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: 301
+# For your editing convenience: highest ID currently used: 302
#
# Placeholders:
# The following placeholder strings are automatically substituted:
@@ -1641,7 +1641,7 @@
'name': 'AuthSchemes',
'type': 'string',
'schema': { 'type': 'string' },
- 'supported_on': ['chrome.*:9-'],
+ 'supported_on': ['chrome.*:9-','android:44-'],
'features': {
'dynamic_refresh': False,
'per_profile': False,
@@ -1659,7 +1659,7 @@
'name': 'DisableAuthNegotiateCnameLookup',
'type': 'main',
'schema': { 'type': 'boolean' },
- 'supported_on': ['chrome.*:9-'],
+ 'supported_on': ['chrome.*:9-','android:44-'],
'features': {
'dynamic_refresh': False,
'per_profile': False,
@@ -1695,7 +1695,7 @@
'name': 'AuthServerWhitelist',
'type': 'string',
'schema': { 'type': 'string' },
- 'supported_on': ['chrome.*:9-'],
+ 'supported_on': ['chrome.*:9-','android:44-'],
'features': {
'dynamic_refresh': False,
'per_profile': False,
@@ -1713,7 +1713,7 @@
'name': 'AuthNegotiateDelegateWhitelist',
'type': 'string',
'schema': { 'type': 'string' },
- 'supported_on': ['chrome.*:9-'],
+ 'supported_on': ['chrome.*:9-','android:44-'],
'features': {
'dynamic_refresh': False,
'per_profile': False,
@@ -1744,6 +1744,22 @@
If no setting is provided, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will fall back to using a default library name.''',
},
{
+ 'name': 'AuthAndroidNegotiateAccountType',
+ 'type': 'string',
+ 'schema': { 'type': 'string' },
+ 'supported_on': ['android:44-'],
+ 'features': {
+ 'dynamic_refresh': False,
+ 'per_profile': False,
+ },
+ 'example_value': 'com.example.kerberos',
+ 'id': 302,
+ 'caption': '''Account Type for Negotiate Authentication''',
+ 'desc': '''Specifies the account type of the accounts provided by the Android authentication app that supports HTTP Negotiate authentication (e.g. Kerberos authentication).
+
+ If no setting is provided then Negotiate Authentication will be disabled on Android.''',
+ },
+ {
'name': 'AllowCrossOriginAuthPrompt',
'type': 'main',
'schema': { 'type': 'boolean' },

Powered by Google App Engine
This is Rietveld 408576698