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

Unified Diff: chromeos/test/data/network/wifi_proxy.onc

Issue 1228543002: Translate ONC ProxySettings <-> Shill ProxyConfig (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add SchemeToString Created 5 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 side-by-side diff with in-line comments
Download patch
Index: chromeos/test/data/network/wifi_proxy.onc
diff --git a/chromeos/test/data/network/wifi_proxy.onc b/chromeos/test/data/network/wifi_proxy.onc
new file mode 100644
index 0000000000000000000000000000000000000000..788954f22ad14cc7003d4185292ea3d186318d27
--- /dev/null
+++ b/chromeos/test/data/network/wifi_proxy.onc
@@ -0,0 +1,32 @@
+{
+ "Name": "wifi1",
+ "ProxySettings": {
+ "Type": "Manual",
+ "Manual": {
+ "HTTPProxy" : {
+ "Host" : "http.example.com",
+ "Port" : 1234
+ },
+ "SecureHTTPProxy" : {
+ "Host" : "https.example.com",
+ "Port" : 3456
+ },
+ "FTPProxy" : {
+ "Host" : "ftp.example.com",
+ "Port" : 5678
+ },
+ "SOCKS" : {
+ "Host" : "socks5://socks.example.com",
+ "Port" : 7890
+ }
+ },
+ "ExcludeDomains": [
+ "google.com",
+ "<local>"
+ ]
+ },
+ "Type": "WiFi",
+ "WiFi": {
+ "Security": "None"
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698