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

Unified Diff: chromeos/test/data/network/shill_ethernet_with_ipconfig.json

Issue 762243002: Change to Shill's IPConfig objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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/shill_ethernet_with_ipconfig.json
diff --git a/chromeos/test/data/network/shill_ethernet_with_ipconfig.json b/chromeos/test/data/network/shill_ethernet_with_ipconfig.json
index a451a6b53358622858d56e1edb315dd72409f9d3..f698b2626ca9a5f77dc1a01651dcafbc0f5f772a 100644
--- a/chromeos/test/data/network/shill_ethernet_with_ipconfig.json
+++ b/chromeos/test/data/network/shill_ethernet_with_ipconfig.json
@@ -20,13 +20,17 @@
"Prefixlen":12
}
],
- "SavedIP.Address":"124.124.124.124",
- "SavedIP.Gateway":"1.1.1.4",
- "SavedIP.NameServers":"1.1.1.5,1.1.1.6",
- "SavedIP.Prefixlen":25,
- "StaticIP.Address":"125.125.125.125",
- "StaticIP.Gateway":"1.1.1.7",
- "StaticIP.NameServers":"1.1.1.8",
- "StaticIP.Prefixlen":26,
+ "SavedIPConfig": {
+ "Address":"124.124.124.124",
+ "Gateway":"1.1.1.4",
+ "NameServers":["1.1.1.5","1.1.1.6"],
+ "Prefixlen":25
+ },
+ "StaticIPConfig": {
+ "Address":"125.125.125.125",
+ "Gateway":"1.1.1.7",
+ "NameServers":["1.1.1.8"],
+ "Prefixlen":26
+ },
"Type":"ethernet"
}

Powered by Google App Engine
This is Rietveld 408576698