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

Unified Diff: chrome/test/data/extensions/api_test/gcd_private/api/wifi_password.js

Issue 450533003: Added function to get list of networks with prefetched passwords. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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/test/data/extensions/api_test/gcd_private/api/wifi_password.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/gcd_private/api/wifi_password.js
diff --git a/chrome/test/data/extensions/api_test/gcd_private/api/wifi_password.js b/chrome/test/data/extensions/api_test/gcd_private/api/wifi_password.js
new file mode 100644
index 0000000000000000000000000000000000000000..ad12257b99c26a874e222813c29cf9880ddbe176
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/gcd_private/api/wifi_password.js
@@ -0,0 +1,35 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+onload = function() {
+ chrome.test.runTests([
+ function wifiPassword() {
+ var succeeded = false;
+ var failed = false;
+
+ function expectResult(expectedResult, result) {
+ chrome.test.assertEq(expectedResult, result);
+
+ if (expectedResult) succeeded = true;
+ else failed = true;
+
+ if (succeeded && failed) {
+ chrome.gcdPrivate.getPrefetchedWifiNameList(onWifiList);
+ }
+ }
+
+ function onWifiList(list) {
+ chrome.test.assertEq(["SuccessNetwork"], list);
+
+ chrome.test.notifyPass();
+ }
+
+ chrome.gcdPrivate.prefetchWifiPassword("SuccessNetwork",
+ expectResult.bind(null, true));
+
+ chrome.gcdPrivate.prefetchWifiPassword("FailureNetwork",
+ expectResult.bind(null, false));
+ }
+ ]);
+};
« no previous file with comments | « chrome/test/data/extensions/api_test/gcd_private/api/wifi_password.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698