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

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

Issue 10388254: Introduce a device setting controlling allowed connection types for AU. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and fix some bugs. Created 8 years, 6 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/browser/policy/proto/chrome_device_policy.proto ('k') | no next file » | 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 # DO NOT import pyauto from here! This file is required to run a presubmit 9 # DO NOT import pyauto from here! This file is required to run a presubmit
10 # scripts that will always fail if pyautolib isn't available, which is common. 10 # scripts that will always fail if pyautolib isn't available, which is common.
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 'DeviceEphemeralUsersEnabled': (None, True, [], ['chromeos']), 266 'DeviceEphemeralUsersEnabled': (None, True, [], ['chromeos']),
267 'DeviceIdleLogoutTimeout': (None, 60000, [], ['chromeos']), 267 'DeviceIdleLogoutTimeout': (None, 60000, [], ['chromeos']),
268 'DeviceIdleLogoutWarningDuration': (None, 15000, [], ['chromeos']), 268 'DeviceIdleLogoutWarningDuration': (None, 15000, [], ['chromeos']),
269 'DeviceLoginScreenSaverId': 269 'DeviceLoginScreenSaverId':
270 (None, 'lcncmkcnkcdbbanbjakcencbaoegdjlp', [], ['chromeos']), 270 (None, 'lcncmkcnkcdbbanbjakcencbaoegdjlp', [], ['chromeos']),
271 'DeviceLoginScreenSaverTimeout': (None, 30000, [], ['chromeos']), 271 'DeviceLoginScreenSaverTimeout': (None, 30000, [], ['chromeos']),
272 'DeviceStartUpUrls': (None, ['http://google.com'], [], ['chromeos']), 272 'DeviceStartUpUrls': (None, ['http://google.com'], [], ['chromeos']),
273 'DeviceAppPack': (None, [], [], ['chromeos']), 273 'DeviceAppPack': (None, [], [], ['chromeos']),
274 'DeviceAutoUpdateDisabled': (None, True, [], ['chromeos']), 274 'DeviceAutoUpdateDisabled': (None, True, [], ['chromeos']),
275 'DeviceTargetVersionPrefix': (None, '1412.', [], ['chromeos']), 275 'DeviceTargetVersionPrefix': (None, '1412.', [], ['chromeos']),
276 'DeviceUpdateScatterFactor': (None, '7200', [], ['chromeos']),
277 'DeviceUpdateAllowedConnectionTypes': (None, [], [], ['chromeos']),
276 'ReportDeviceLocation': (None, False, [], ['chromeos']), 278 'ReportDeviceLocation': (None, False, [], ['chromeos']),
277 279
278 # Chrome Frame policies: 280 # Chrome Frame policies:
279 'ChromeFrameRendererSettings': (None, 0, [], []), 281 'ChromeFrameRendererSettings': (None, 0, [], []),
280 'RenderInChromeFrameList': (None, ['google.com'], [], []), 282 'RenderInChromeFrameList': (None, ['google.com'], [], []),
281 'RenderInHostList': (None, ['google.com'], [], []), 283 'RenderInHostList': (None, ['google.com'], [], []),
282 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), 284 'ChromeFrameContentTypes': (None, ['text/xml'], [], []),
283 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), 285 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []),
284 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), 286 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []),
285 } 287 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/proto/chrome_device_policy.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698