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

Side by Side Diff: chrome/test/functional/policy_prefs_ui.py

Issue 8275012: Remove RemoteAccessClientFirewallTraversal policy and code paths. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-rebase Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.cc ('k') | chrome/test/ui/ppapi_uitest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # If this test is failing, please check these steps. 6 # If this test is failing, please check these steps.
7 # 7 #
8 # - You introduced a new policy: 8 # - You introduced a new policy:
9 # Cool! Edit |policies| below and add an entry for it. See the comment above 9 # Cool! Edit |policies| below and add an entry for it. See the comment above
10 # it for the format. 10 # it for the format.
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'ApplicationLocaleValue': ('', [], [ 'win' ]), 77 'ApplicationLocaleValue': ('', [], [ 'win' ]),
78 'AlternateErrorPagesEnabled': (False, [ ADVANCED ]), 78 'AlternateErrorPagesEnabled': (False, [ ADVANCED ]),
79 'SearchSuggestEnabled': (False, [ ADVANCED ]), 79 'SearchSuggestEnabled': (False, [ ADVANCED ]),
80 'DnsPrefetchingEnabled': (False, [ ADVANCED ]), 80 'DnsPrefetchingEnabled': (False, [ ADVANCED ]),
81 'DisableSpdy': (True, []), 81 'DisableSpdy': (True, []),
82 'DisabledSchemes': ( ['file' ], []), 82 'DisabledSchemes': ( ['file' ], []),
83 'JavascriptEnabled': (False, [ CONTENT ]), 83 'JavascriptEnabled': (False, [ CONTENT ]),
84 'IncognitoEnabled': (False, []), 84 'IncognitoEnabled': (False, []),
85 'IncognitoModeAvailability': (1, []), 85 'IncognitoModeAvailability': (1, []),
86 'SavingBrowserHistoryDisabled': (True, []), 86 'SavingBrowserHistoryDisabled': (True, []),
87 'RemoteAccessClientFirewallTraversal': (True, []),
88 'RemoteAccessHostFirewallTraversal': (True, []), 87 'RemoteAccessHostFirewallTraversal': (True, []),
89 'PrintingEnabled': (False, []), 88 'PrintingEnabled': (False, []),
90 # Note: supported_on is empty for this policy. 89 # Note: supported_on is empty for this policy.
91 'CloudPrintProxyEnabled': (True, [], []), 90 'CloudPrintProxyEnabled': (True, [], []),
92 'SafeBrowsingEnabled': (False, [ ADVANCED ]), 91 'SafeBrowsingEnabled': (False, [ ADVANCED ]),
93 # TODO(joaodasilva): This is only in place on official builds, but the 92 # TODO(joaodasilva): This is only in place on official builds, but the
94 # SetUserCloudPolicy call is a nop on official builds. Should be ADVANCED. 93 # SetUserCloudPolicy call is a nop on official builds. Should be ADVANCED.
95 'MetricsReportingEnabled': (False, []), 94 'MetricsReportingEnabled': (False, []),
96 'PasswordManagerEnabled': (False, [ PERSONAL ]), 95 'PasswordManagerEnabled': (False, [ PERSONAL ]),
97 # TODO(joaodasilva): Should be PASSWORDS too. http://crbug.com/97749 96 # TODO(joaodasilva): Should be PASSWORDS too. http://crbug.com/97749
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 323
325 self.SetPolicies(policy_dict) 324 self.SetPolicies(policy_dict)
326 self.assertTrue(self.IsBannerVisible()) 325 self.assertTrue(self.IsBannerVisible())
327 326
328 self.SetPolicies({}) 327 self.SetPolicies({})
329 self.assertFalse(self.IsBannerVisible()) 328 self.assertFalse(self.IsBannerVisible())
330 329
331 330
332 if __name__ == '__main__': 331 if __name__ == '__main__':
333 pyauto_functional.Main() 332 pyauto_functional.Main()
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | chrome/test/ui/ppapi_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698