| Index: chrome/test/pyautolib/pyauto.py
|
| diff --git a/chrome/test/pyautolib/pyauto.py b/chrome/test/pyautolib/pyauto.py
|
| index 9282a26781b8788f6695878c1d2ae51d9794f4de..8ce85af2596c05c2e83ff78e5c9270bc4e883eed 100755
|
| --- a/chrome/test/pyautolib/pyauto.py
|
| +++ b/chrome/test/pyautolib/pyauto.py
|
| @@ -4437,25 +4437,6 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase):
|
| }
|
| return self._GetResultFromJSONRequest(cmd_dict, windex=None)
|
|
|
| - def GetPolicyDefinitionList(self):
|
| - """Gets a dictionary of existing policies mapped to their definitions.
|
| -
|
| - SAMPLE OUTPUT:
|
| - {
|
| - 'ShowHomeButton': ['bool', false],
|
| - 'DefaultSearchProviderSearchURL': ['str', false],
|
| - ...
|
| - }
|
| -
|
| - Returns:
|
| - A dictionary mapping each policy name to its value type and a Boolean flag
|
| - indicating whether it is a device policy.
|
| - """
|
| - cmd_dict = {
|
| - 'command': 'GetPolicyDefinitionList'
|
| - }
|
| - return self._GetResultFromJSONRequest(cmd_dict)
|
| -
|
| def RefreshPolicies(self):
|
| """Refreshes all the available policy providers.
|
|
|
|
|