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

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: Handle XP as well and add tests 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
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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 'DeviceStartUpUrls': ([ 'http://google.com' ], [], []), 194 'DeviceStartUpUrls': ([ 'http://google.com' ], [], []),
195 'DeviceAppPack': ([], [], []), 195 'DeviceAppPack': ([], [], []),
196 'DeviceAutoUpdateDisabled': (True, [], []), 196 'DeviceAutoUpdateDisabled': (True, [], []),
197 197
198 # Chrome Frame policies: 198 # Chrome Frame policies:
199 'ChromeFrameRendererSettings': (0, [], []), 199 'ChromeFrameRendererSettings': (0, [], []),
200 'RenderInChromeFrameList': ([ 'google.com' ], [], []), 200 'RenderInChromeFrameList': ([ 'google.com' ], [], []),
201 'RenderInHostList': ([ 'google.com' ], [], []), 201 'RenderInHostList': ([ 'google.com' ], [], []),
202 'ChromeFrameContentTypes': ([ 'text/xml' ], [], []), 202 'ChromeFrameContentTypes': ([ 'text/xml' ], [], []),
203 'GCFUserDataDir': ('${user_name}/test-frame', [], []), 203 'GCFUserDataDir': ('${user_name}/test-frame', [], []),
204 'AdditionalLaunchParameters': ('--enable-media-stream', [], []),
204 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698