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