| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 # ChromeOS-only policies: | 240 # ChromeOS-only policies: |
| 241 # TODO(frankf): Add prefs for these after crosbug.com/28756 is fixed. | 241 # TODO(frankf): Add prefs for these after crosbug.com/28756 is fixed. |
| 242 'ChromeOsLockOnIdleSuspend': | 242 'ChromeOsLockOnIdleSuspend': |
| 243 (None, True, [BROWSER], ['chromeos']), | 243 (None, True, [BROWSER], ['chromeos']), |
| 244 'PolicyRefreshRate': | 244 'PolicyRefreshRate': |
| 245 (None, 300000, [], ['chromeos']), | 245 (None, 300000, [], ['chromeos']), |
| 246 'OpenNetworkConfiguration': (None, '', [], ['chromeos']), | 246 'OpenNetworkConfiguration': (None, '', [], ['chromeos']), |
| 247 'GDataDisabled': (None, True, [], ['chromeos']), | 247 'GDataDisabled': (None, True, [], ['chromeos']), |
| 248 'GDataDisabledOverCellular': | 248 'GDataDisabledOverCellular': |
| 249 (None, True, [], ['chromeos']), | 249 (None, True, [], ['chromeos']), |
| 250 'PinnedLauncherApps': (None, [], [], ['chromeos']), |
| 250 | 251 |
| 251 # ChromeOS Device policies: | 252 # ChromeOS Device policies: |
| 252 'DevicePolicyRefreshRate': (None, 300000, [], ['chromeos']), | 253 'DevicePolicyRefreshRate': (None, 300000, [], ['chromeos']), |
| 253 'ChromeOsReleaseChannel': (None, 'stable-channel', [], ['chromeos']), | 254 'ChromeOsReleaseChannel': (None, 'stable-channel', [], ['chromeos']), |
| 254 'ChromeOsReleaseChannelDelegated': (None, False, [], ['chromeos']), | 255 'ChromeOsReleaseChannelDelegated': (None, False, [], ['chromeos']), |
| 255 'DeviceOpenNetworkConfiguration': (None, '', [], ['chromeos']), | 256 'DeviceOpenNetworkConfiguration': (None, '', [], ['chromeos']), |
| 256 'ReportDeviceVersionInfo': (None, True, [], ['chromeos']), | 257 'ReportDeviceVersionInfo': (None, True, [], ['chromeos']), |
| 257 'ReportDeviceActivityTimes': (None, True, [], ['chromeos']), | 258 'ReportDeviceActivityTimes': (None, True, [], ['chromeos']), |
| 258 'ReportDeviceBootMode': (None, True, [], ['chromeos']), | 259 'ReportDeviceBootMode': (None, True, [], ['chromeos']), |
| 259 'DeviceAllowNewUsers': (None, True, [], ['chromeos']), | 260 'DeviceAllowNewUsers': (None, True, [], ['chromeos']), |
| (...skipping 15 matching lines...) Expand all Loading... |
| 275 'ReportDeviceLocation': (None, False, [], ['chromeos']), | 276 'ReportDeviceLocation': (None, False, [], ['chromeos']), |
| 276 | 277 |
| 277 # Chrome Frame policies: | 278 # Chrome Frame policies: |
| 278 'ChromeFrameRendererSettings': (None, 0, [], []), | 279 'ChromeFrameRendererSettings': (None, 0, [], []), |
| 279 'RenderInChromeFrameList': (None, ['google.com'], [], []), | 280 'RenderInChromeFrameList': (None, ['google.com'], [], []), |
| 280 'RenderInHostList': (None, ['google.com'], [], []), | 281 'RenderInHostList': (None, ['google.com'], [], []), |
| 281 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), | 282 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), |
| 282 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), | 283 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), |
| 283 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), | 284 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), |
| 284 } | 285 } |
| OLD | NEW |