Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(362)

Side by Side Diff: chrome/test/functional/policy_test_cases.py

Issue 10697097: Add a policy to disable mounting of external storage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased to ToT. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 # TODO(frankf): Add prefs for these after crosbug.com/28756 is fixed. 254 # TODO(frankf): Add prefs for these after crosbug.com/28756 is fixed.
255 'ChromeOsLockOnIdleSuspend': 255 'ChromeOsLockOnIdleSuspend':
256 (None, True, [BROWSER], ['chromeos']), 256 (None, True, [BROWSER], ['chromeos']),
257 'PolicyRefreshRate': 257 'PolicyRefreshRate':
258 (None, 300000, [], ['chromeos']), 258 (None, 300000, [], ['chromeos']),
259 'OpenNetworkConfiguration': (None, '', [], ['chromeos']), 259 'OpenNetworkConfiguration': (None, '', [], ['chromeos']),
260 'GDataDisabled': (None, True, [], ['chromeos']), 260 'GDataDisabled': (None, True, [], ['chromeos']),
261 'GDataDisabledOverCellular': 261 'GDataDisabledOverCellular':
262 (None, True, [], ['chromeos']), 262 (None, True, [], ['chromeos']),
263 'PinnedLauncherApps': (None, [], [], ['chromeos']), 263 'PinnedLauncherApps': (None, [], [], ['chromeos']),
264 'ExternalStorageDisabled': (None, True, [], ['chromeos']),
264 265
265 # ChromeOS Device policies: 266 # ChromeOS Device policies:
266 'DevicePolicyRefreshRate': (None, 300000, [], ['chromeos']), 267 'DevicePolicyRefreshRate': (None, 300000, [], ['chromeos']),
267 'ChromeOsReleaseChannel': (None, 'stable-channel', [], ['chromeos']), 268 'ChromeOsReleaseChannel': (None, 'stable-channel', [], ['chromeos']),
268 'ChromeOsReleaseChannelDelegated': (None, False, [], ['chromeos']), 269 'ChromeOsReleaseChannelDelegated': (None, False, [], ['chromeos']),
269 'DeviceOpenNetworkConfiguration': (None, '', [], ['chromeos']), 270 'DeviceOpenNetworkConfiguration': (None, '', [], ['chromeos']),
270 'ReportDeviceVersionInfo': (None, True, [], ['chromeos']), 271 'ReportDeviceVersionInfo': (None, True, [], ['chromeos']),
271 'ReportDeviceActivityTimes': (None, True, [], ['chromeos']), 272 'ReportDeviceActivityTimes': (None, True, [], ['chromeos']),
272 'ReportDeviceBootMode': (None, True, [], ['chromeos']), 273 'ReportDeviceBootMode': (None, True, [], ['chromeos']),
273 'DeviceAllowNewUsers': (None, True, [], ['chromeos']), 274 'DeviceAllowNewUsers': (None, True, [], ['chromeos']),
(...skipping 17 matching lines...) Expand all
291 'ReportDeviceLocation': (None, False, [], ['chromeos']), 292 'ReportDeviceLocation': (None, False, [], ['chromeos']),
292 293
293 # Chrome Frame policies: 294 # Chrome Frame policies:
294 'ChromeFrameRendererSettings': (None, 0, [], []), 295 'ChromeFrameRendererSettings': (None, 0, [], []),
295 'RenderInChromeFrameList': (None, ['google.com'], [], []), 296 'RenderInChromeFrameList': (None, ['google.com'], [], []),
296 'RenderInHostList': (None, ['google.com'], [], []), 297 'RenderInHostList': (None, ['google.com'], [], []),
297 'ChromeFrameContentTypes': (None, ['text/xml'], [], []), 298 'ChromeFrameContentTypes': (None, ['text/xml'], [], []),
298 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []), 299 'GCFUserDataDir': (None, '${user_name}/test-frame', [], []),
299 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []), 300 'AdditionalLaunchParameters': (None, '--enable-media-stream', [], []),
300 } 301 }
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698