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

Unified Diff: chrome/test/pyautolib/pyauto.py

Issue 8102019: redesign and reimplement proxy config service and tracker, revise proxy ui on cros (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/pyautolib/pyauto.py
===================================================================
--- chrome/test/pyautolib/pyauto.py (revision 106059)
+++ chrome/test/pyautolib/pyauto.py (working copy)
@@ -3659,7 +3659,7 @@
pyauto_errors.JSONInterfaceError if the automation call returns an error.
"""
cmd_dict = { 'command': 'GetProxySettings' }
- return self._GetResultFromJSONRequest(cmd_dict, windex=-1)
+ return self._GetResultFromJSONRequest(cmd_dict, windex=0)
def SetProxySettingsOnChromeOS(self, key, value):
dtu 2011/10/18 18:07:00 Same as above. It should take an optional windex=0
kuan 2011/10/18 20:32:47 same here: added windex=0, and changed below to wi
"""Set a proxy setting on Chrome OS.
@@ -3713,7 +3713,7 @@
'key': key,
'value': value,
}
- return self._GetResultFromJSONRequest(cmd_dict, windex=-1)
+ return self._GetResultFromJSONRequest(cmd_dict, windex=0)
def ForgetWifiNetwork(self, service_path):
"""Forget a remembered network by its service path.
« chrome/browser/chromeos/proxy_config_service_impl.h ('K') | « chrome/test/base/testing_profile.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698