| 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 'DeviceLoginScreenSaverId': | 289 'DeviceLoginScreenSaverId': |
| 290 (None, 'lcncmkcnkcdbbanbjakcencbaoegdjlp', [], ['chromeos']), | 290 (None, 'lcncmkcnkcdbbanbjakcencbaoegdjlp', [], ['chromeos']), |
| 291 'DeviceLoginScreenSaverTimeout': (None, 30000, [], ['chromeos']), | 291 'DeviceLoginScreenSaverTimeout': (None, 30000, [], ['chromeos']), |
| 292 'DeviceStartUpUrls': (None, ['http://google.com'], [], ['chromeos']), | 292 'DeviceStartUpUrls': (None, ['http://google.com'], [], ['chromeos']), |
| 293 'DeviceAppPack': (None, [], [], ['chromeos']), | 293 'DeviceAppPack': (None, [], [], ['chromeos']), |
| 294 'DeviceAutoUpdateDisabled': (None, True, [], ['chromeos']), | 294 'DeviceAutoUpdateDisabled': (None, True, [], ['chromeos']), |
| 295 'DeviceTargetVersionPrefix': (None, '1412.', [], ['chromeos']), | 295 'DeviceTargetVersionPrefix': (None, '1412.', [], ['chromeos']), |
| 296 'DeviceUpdateScatterFactor': (None, '7200', [], ['chromeos']), | 296 'DeviceUpdateScatterFactor': (None, '7200', [], ['chromeos']), |
| 297 'DeviceUpdateAllowedConnectionTypes': (None, [], [], ['chromeos']), | 297 'DeviceUpdateAllowedConnectionTypes': (None, [], [], ['chromeos']), |
| 298 'ReportDeviceLocation': (None, False, [], ['chromeos']), | 298 'ReportDeviceLocation': (None, False, [], ['chromeos']), |
| 299 'DeviceTimezone': (None, 'Europe/Brussels', [], ['chromeos']), |
| 299 | 300 |
| 300 # Chrome Frame policies: | 301 # Chrome Frame policies: |
| 301 'ChromeFrameRendererSettings': (None, 0, [], []), | 302 'ChromeFrameRendererSettings': (None, 0, [], []), |
| 302 'RenderInChromeFrameList': (None, ['google.com'], [], []), | 303 'RenderInChromeFrameList': (None, ['google.com'], [], []), |
| 303 'RenderInHostList': (None, ['google.com'], [], []), | 304 'RenderInHostList': (None, ['google.com'], [], []), |
| 304 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), | 305 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), |
| 305 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), | 306 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), |
| 306 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), | 307 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), |
| 307 } | 308 } |
| OLD | NEW |