Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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, [ 'wifi' ], [], ['chromeos']), | |
|
garnold
2012/05/23 22:41:43
Why not [ 'ethernet', 'wifi' ] ?
Mattias Nissler (ping if slow)
2012/05/24 08:12:31
This is a sample value to configure, so it doesn't
| |
| 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 } |
| OLD | NEW |