| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 'ChromeOsLockOnIdleSuspend': | 263 'ChromeOsLockOnIdleSuspend': |
| 264 (None, True, [BROWSER], ['chromeos']), | 264 (None, True, [BROWSER], ['chromeos']), |
| 265 'PolicyRefreshRate': | 265 'PolicyRefreshRate': |
| 266 (None, 300000, [], ['chromeos']), | 266 (None, 300000, [], ['chromeos']), |
| 267 'OpenNetworkConfiguration': (None, '', [], ['chromeos']), | 267 'OpenNetworkConfiguration': (None, '', [], ['chromeos']), |
| 268 'GDataDisabled': (None, True, [], ['chromeos']), | 268 'GDataDisabled': (None, True, [], ['chromeos']), |
| 269 'GDataDisabledOverCellular': | 269 'GDataDisabledOverCellular': |
| 270 (None, True, [], ['chromeos']), | 270 (None, True, [], ['chromeos']), |
| 271 'PinnedLauncherApps': (None, [], [], ['chromeos']), | 271 'PinnedLauncherApps': (None, [], [], ['chromeos']), |
| 272 'ExternalStorageDisabled': (None, True, [], ['chromeos']), | 272 'ExternalStorageDisabled': (None, True, [], ['chromeos']), |
| 273 'AudioOutputAllowed': (None, True, [], ['chromeos']), |
| 274 'AudioCaptureAllowed': (None, True, [], ['chromeos']), |
| 273 | 275 |
| 274 # ChromeOS Device policies: | 276 # ChromeOS Device policies: |
| 275 'DevicePolicyRefreshRate': (None, 300000, [], ['chromeos']), | 277 'DevicePolicyRefreshRate': (None, 300000, [], ['chromeos']), |
| 276 'ChromeOsReleaseChannel': (None, 'stable-channel', [], ['chromeos']), | 278 'ChromeOsReleaseChannel': (None, 'stable-channel', [], ['chromeos']), |
| 277 'ChromeOsReleaseChannelDelegated': (None, False, [], ['chromeos']), | 279 'ChromeOsReleaseChannelDelegated': (None, False, [], ['chromeos']), |
| 278 'DeviceOpenNetworkConfiguration': (None, '', [], ['chromeos']), | 280 'DeviceOpenNetworkConfiguration': (None, '', [], ['chromeos']), |
| 279 'ReportDeviceVersionInfo': (None, True, [], ['chromeos']), | 281 'ReportDeviceVersionInfo': (None, True, [], ['chromeos']), |
| 280 'ReportDeviceActivityTimes': (None, True, [], ['chromeos']), | 282 'ReportDeviceActivityTimes': (None, True, [], ['chromeos']), |
| 281 'ReportDeviceBootMode': (None, True, [], ['chromeos']), | 283 'ReportDeviceBootMode': (None, True, [], ['chromeos']), |
| 282 'DeviceAllowNewUsers': (None, True, [], ['chromeos']), | 284 'DeviceAllowNewUsers': (None, True, [], ['chromeos']), |
| (...skipping 18 matching lines...) Expand all Loading... |
| 301 'SystemTimezone': (None, 'Europe/Brussels', [], ['chromeos']), | 303 'SystemTimezone': (None, 'Europe/Brussels', [], ['chromeos']), |
| 302 | 304 |
| 303 # Chrome Frame policies: | 305 # Chrome Frame policies: |
| 304 'ChromeFrameRendererSettings': (None, 0, [], []), | 306 'ChromeFrameRendererSettings': (None, 0, [], []), |
| 305 'RenderInChromeFrameList': (None, ['google.com'], [], []), | 307 'RenderInChromeFrameList': (None, ['google.com'], [], []), |
| 306 'RenderInHostList': (None, ['google.com'], [], []), | 308 'RenderInHostList': (None, ['google.com'], [], []), |
| 307 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), | 309 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), |
| 308 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), | 310 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), |
| 309 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), | 311 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), |
| 310 } | 312 } |
| OLD | NEW |