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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 'URLWhitelist': ('kUrlWhitelist', ['google.com'], [], OS_ALL), | 236 'URLWhitelist': ('kUrlWhitelist', ['google.com'], [], OS_ALL), |
237 'EnterpriseWebStoreURL': ('kEnterpriseWebStoreURL', '', [], OS_ALL), | 237 'EnterpriseWebStoreURL': ('kEnterpriseWebStoreURL', '', [], OS_ALL), |
238 'EnterpriseWebStoreName': ('kEnterpriseWebStoreName', '', [], OS_ALL), | 238 'EnterpriseWebStoreName': ('kEnterpriseWebStoreName', '', [], OS_ALL), |
239 'EnableMemoryInfo': ('kEnableMemoryInfo', True, [], OS_ALL), | 239 'EnableMemoryInfo': ('kEnableMemoryInfo', True, [], OS_ALL), |
240 'DisablePrintPreview': | 240 'DisablePrintPreview': |
241 ('kPrintPreviewDisabled', True, [], ['win', 'mac', 'linux']), | 241 ('kPrintPreviewDisabled', True, [], ['win', 'mac', 'linux']), |
242 'BackgroundModeEnabled': | 242 'BackgroundModeEnabled': |
243 ('kBackgroundModeEnabled', True, [BROWSER], ['win', 'linux']), | 243 ('kBackgroundModeEnabled', True, [BROWSER], ['win', 'linux']), |
244 'RestrictSigninToPattern': ('kGoogleServicesUsernamePattern', | 244 'RestrictSigninToPattern': ('kGoogleServicesUsernamePattern', |
245 '.*@google.com', [], ['win', 'mac', 'linux']), | 245 '.*@google.com', [], ['win', 'mac', 'linux']), |
246 'DisableSafeBrowsingProceedAnyway': | |
247 ('kSafeBrowsingProceedAnywayDisabled', True, [], OS_ALL), | |
248 | 246 |
249 # ChromeOS-only policies: | 247 # ChromeOS-only policies: |
250 # TODO(frankf): Add prefs for these after crosbug.com/28756 is fixed. | 248 # TODO(frankf): Add prefs for these after crosbug.com/28756 is fixed. |
251 'ChromeOsLockOnIdleSuspend': | 249 'ChromeOsLockOnIdleSuspend': |
252 (None, True, [BROWSER], ['chromeos']), | 250 (None, True, [BROWSER], ['chromeos']), |
253 'PolicyRefreshRate': | 251 'PolicyRefreshRate': |
254 (None, 300000, [], ['chromeos']), | 252 (None, 300000, [], ['chromeos']), |
255 'OpenNetworkConfiguration': (None, '', [], ['chromeos']), | 253 'OpenNetworkConfiguration': (None, '', [], ['chromeos']), |
256 'GDataDisabled': (None, True, [], ['chromeos']), | 254 'GDataDisabled': (None, True, [], ['chromeos']), |
257 'GDataDisabledOverCellular': | 255 'GDataDisabledOverCellular': |
(...skipping 29 matching lines...) Expand all Loading... |
287 'ReportDeviceLocation': (None, False, [], ['chromeos']), | 285 'ReportDeviceLocation': (None, False, [], ['chromeos']), |
288 | 286 |
289 # Chrome Frame policies: | 287 # Chrome Frame policies: |
290 'ChromeFrameRendererSettings': (None, 0, [], []), | 288 'ChromeFrameRendererSettings': (None, 0, [], []), |
291 'RenderInChromeFrameList': (None, ['google.com'], [], []), | 289 'RenderInChromeFrameList': (None, ['google.com'], [], []), |
292 'RenderInHostList': (None, ['google.com'], [], []), | 290 'RenderInHostList': (None, ['google.com'], [], []), |
293 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), | 291 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), |
294 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), | 292 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), |
295 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), | 293 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), |
296 } | 294 } |
OLD | NEW |