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

Unified Diff: chrome/test/data/extensions/api_test/networking/test.js

Issue 551753002: ONC: Remove augmentation of unmanaged network properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ipconfig
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | chromeos/network/onc/onc_merger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/networking/test.js
diff --git a/chrome/test/data/extensions/api_test/networking/test.js b/chrome/test/data/extensions/api_test/networking/test.js
index cbdcdb677f0f6df72ff50862a12bcd44e61fcc5a..5609951aca3f0e94538a440eec70ee7105233b82 100644
--- a/chrome/test/data/extensions/api_test/networking/test.js
+++ b/chrome/test/data/extensions/api_test/networking/test.js
@@ -316,14 +316,8 @@ var availableTests = [
"stub_wifi2",
callbackPass(function(result) {
assertEq({
- "Connectable": {
- "Active": true,
- "Effective": "Unmanaged"
- },
- "ConnectionState": {
- "Active": "NotConnected",
- "Effective": "Unmanaged"
- },
+ "Connectable": true,
+ "ConnectionState": "NotConnected",
"GUID": "stub_wifi2",
"Name": {
"Active": "wifi2_PSK",
@@ -340,14 +334,8 @@ var availableTests = [
"Active": false,
"UserEditable": true
},
- "Frequency" : {
- "Active": 5000,
- "Effective": "Unmanaged"
- },
- "FrequencyList" : {
- "Active": [2400, 5000],
- "Effective": "Unmanaged"
- },
+ "Frequency" : 5000,
+ "FrequencyList" : [2400, 5000],
"Passphrase": {
"Effective": "UserSetting",
"UserEditable": true,
@@ -363,10 +351,7 @@ var availableTests = [
"Effective": "UserPolicy",
"UserPolicy": "WPA-PSK"
},
- "SignalStrength": {
- "Active": 80,
- "Effective": "Unmanaged"
- }
+ "SignalStrength": 80,
}
}, result);
}));
« no previous file with comments | « no previous file | chromeos/network/onc/onc_merger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698