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