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

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

Issue 433703003: Revert of Added function to get list of networks with prefetched passwords. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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: 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
deleted file mode 100644
index ad12257b99c26a874e222813c29cf9880ddbe176..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/api_test/gcd_private/api/wifi_password.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// 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));
- }
- ]);
-};

Powered by Google App Engine
This is Rietveld 408576698