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

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

Issue 60583003: The chrome.screenlockPrivate API allows select apps to control the ChromeOS ScreenLocker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clang Created 7 years, 1 month 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
new file mode 100644
index 0000000000000000000000000000000000000000..e39d233613250813070204bd0d12ce759e0a3230
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/screenlockPrivate/test.js
@@ -0,0 +1,44 @@
+// Copyright (c) 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();
« no previous file with comments | « chrome/test/data/extensions/api_test/screenlockPrivate/manifest.json ('k') | extensions/common/permissions/api_permission.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698