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

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

Issue 9836037: Adding policy support to Chrome Frame's launcher so that additional parameters can be passed to Chr… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments from Greg Created 8 years, 9 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/app/policy/policy_templates.json ('k') | chrome_frame/chrome_frame_automation.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/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 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 # This data is in a separate file so that src/chrome/app/policy/PRESUBMIT.py 6 # This data is in a separate file so that src/chrome/app/policy/PRESUBMIT.py
7 # can load it too without having to load pyautolib. 7 # can load it too without having to load pyautolib.
8 8
9 class PolicyPrefsTestCases(object): 9 class PolicyPrefsTestCases(object):
10 """A list of test cases for policy_prefs_ui.py.""" 10 """A list of test cases for policy_prefs_ui.py."""
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 'DeviceStartUpUrls': ([ 'http://google.com' ], [], [ 'chromeos' ]), 196 'DeviceStartUpUrls': ([ 'http://google.com' ], [], [ 'chromeos' ]),
197 'DeviceAppPack': ([], [], [ 'chromeos' ]), 197 'DeviceAppPack': ([], [], [ 'chromeos' ]),
198 'DeviceAutoUpdateDisabled': (True, [], [ 'chromeos' ]), 198 'DeviceAutoUpdateDisabled': (True, [], [ 'chromeos' ]),
199 199
200 # Chrome Frame policies: 200 # Chrome Frame policies:
201 'ChromeFrameRendererSettings': (0, [], []), 201 'ChromeFrameRendererSettings': (0, [], []),
202 'RenderInChromeFrameList': ([ 'google.com' ], [], []), 202 'RenderInChromeFrameList': ([ 'google.com' ], [], []),
203 'RenderInHostList': ([ 'google.com' ], [], []), 203 'RenderInHostList': ([ 'google.com' ], [], []),
204 'ChromeFrameContentTypes': ([ 'text/xml' ], [], []), 204 'ChromeFrameContentTypes': ([ 'text/xml' ], [], []),
205 'GCFUserDataDir': ('${user_name}/test-frame', [], []), 205 'GCFUserDataDir': ('${user_name}/test-frame', [], []),
206 'AdditionalLaunchParameters': ('--enable-media-stream', [], []),
206 } 207 }
OLDNEW
« no previous file with comments | « chrome/app/policy/policy_templates.json ('k') | chrome_frame/chrome_frame_automation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698