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

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

Issue 156353002: Implement networkingPrivate.setWifiTDLSEnabledState (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable TDLS tests on non-chromeos Created 6 years, 10 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 | « chrome/common/extensions/api/networking_private.json ('k') | chromeos/dbus/fake_shill_device_client.h » ('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 ed491cf904b98131fa4dce55584982bdff3f091a..47dd3b0e1668734d01909901edb6283e947452dc 100644
--- a/chrome/test/data/extensions/api_test/networking/test.js
+++ b/chrome/test/data/extensions/api_test/networking/test.js
@@ -366,6 +366,21 @@ var availableTests = [
callbackPass(function(result) {
assertEq("encrypted_data", result);
}));
+ },
+ function setWifiTDLSEnabledState() {
+ chrome.networkingPrivate.setWifiTDLSEnabledState(
+ "aa:bb:cc:dd:ee:ff",
+ true,
+ callbackPass(function(result) {
+ assertEq("Connected", result);
+ }));
+ },
+ function getWifiTDLSStatus() {
+ chrome.networkingPrivate.getWifiTDLSStatus(
+ "aa:bb:cc:dd:ee:ff",
+ callbackPass(function(result) {
+ assertEq("Connected", result);
+ }));
}
];
« no previous file with comments | « chrome/common/extensions/api/networking_private.json ('k') | chromeos/dbus/fake_shill_device_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698