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

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

Issue 168623003: Add chrome.screenlockPrivate API functions to handle alternate auth types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
Index: chrome/test/data/extensions/api_test/screenlockPrivate/test.js
diff --git a/chrome/test/data/extensions/api_test/screenlockPrivate/test.js b/chrome/test/data/extensions/api_test/screenlockPrivate/test.js
deleted file mode 100644
index d0006fcba160208e07652401e2f06cfcb216565f..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/api_test/screenlockPrivate/test.js
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2013 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.
-
-var stage = 0;
-
-function step() {
- chrome.screenlockPrivate.getLocked(function gotLocked(locked) {
- if (stage === 0) {
- if (locked) {
- chrome.test.fail('locked at stage ' + stage);
- } else {
- chrome.screenlockPrivate.setLocked(true);
- ++stage;
- return true;
- }
- } else if (stage === 1) {
- if (!locked) {
- chrome.test.fail('unlocked at stage ' + stage);
- } else {
- chrome.screenlockPrivate.setLocked(false);
- ++stage;
- return true;
- }
- } else if (stage === 2) {
- if (locked) {
- chrome.test.fail('locked at stage ' + stage);
- } else {
- chrome.test.succeed();
- }
- }
- });
-};
-
-chrome.screenlockPrivate.onChanged.addListener(function(locked) {
- if (locked != (1 == (stage % 2))) {
- chrome.test.fail((locked ? '' : 'un') + 'locked at stage ' + stage +
- ' onChanged');
- } else {
- return step();
- }
-});
-
-step();

Powered by Google App Engine
This is Rietveld 408576698