diff options
author | joaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-25 15:13:21 +0000 |
---|---|---|
committer | joaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-25 15:13:21 +0000 |
commit | b2401b8e549e5d788fcee92a3b8c7d018f55aff1 (patch) | |
tree | cab309a21cacfa4534b770040789266e56c174d3 /chrome/test/functional | |
parent | d44913f15e2b75285f9fda8784e638d015ff5baa (diff) | |
download | chromium_src-b2401b8e549e5d788fcee92a3b8c7d018f55aff1.zip chromium_src-b2401b8e549e5d788fcee92a3b8c7d018f55aff1.tar.gz chromium_src-b2401b8e549e5d788fcee92a3b8c7d018f55aff1.tar.bz2 |
Fix supported_on list for some policies.
BUG=106077, 43281
TEST=EnableOriginBoundCerts and EnableMemoryInfo policies are available on ChromeOS
Review URL: http://codereview.chromium.org/9160030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119071 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/functional')
-rwxr-xr-x | chrome/test/functional/policy_prefs_ui.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/test/functional/policy_prefs_ui.py b/chrome/test/functional/policy_prefs_ui.py index 9ede39b..6699268 100755 --- a/chrome/test/functional/policy_prefs_ui.py +++ b/chrome/test/functional/policy_prefs_ui.py @@ -90,7 +90,7 @@ class PolicyPrefsUITest(policy_base.PolicyTestBase): 'PrintingEnabled': (False, []), # Note: supported_on is empty for this policy. 'CloudPrintProxyEnabled': (True, [], []), - 'CloudPrintSubmitEnabled': (False, [], ['win', 'mac', 'linux']), + 'CloudPrintSubmitEnabled': (False, [], [ 'win', 'mac', 'linux' ]), 'SafeBrowsingEnabled': (False, [ ADVANCED ]), # TODO(joaodasilva): This is only in place on official builds, but the # SetUserCloudPolicy call is a nop on official builds. Should be ADVANCED. @@ -122,7 +122,7 @@ class PolicyPrefsUITest(policy_base.PolicyTestBase): 'ProxyBypassList': ('localhost', [], [ 'win', 'mac', 'linux' ]), # Note: this policy is only used internally for now. 'ProxySettings': ({}, [], []), - 'EnableOriginBoundCerts': (False, []), + 'EnableOriginBoundCerts': (False, [], [ 'win', 'mac', 'linux' ]), 'DisableSSLRecordSplitting': (False, []), 'AuthSchemes': ('AuthSchemes', []), 'DisableAuthNegotiateCnameLookup': (True, []), @@ -200,7 +200,7 @@ class PolicyPrefsUITest(policy_base.PolicyTestBase): 'EnterpriseWebStoreURL': ('', []), 'EnterpriseWebStoreName': ('', []), 'EnableMemoryInfo': (True, []), - 'DisablePrintPreview': (True, []), + 'DisablePrintPreview': (True, [], [ 'win', 'mac', 'linux' ]), # ChromeOS-only policies: 'ChromeOsLockOnIdleSuspend': (True, [ PERSONAL ], [ 'chromeos' ]), |