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

Unified Diff: chrome/common/extensions/api/users_private.idl

Issue 1143303004: Add IDL and stub implementation for chrome.usersPrivate API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a comment Created 5 years, 7 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/common/extensions/api/users_private.idl
diff --git a/chrome/common/extensions/api/users_private.idl b/chrome/common/extensions/api/users_private.idl
new file mode 100644
index 0000000000000000000000000000000000000000..413c81d3b75ab643c4f24c69d551713d5c4ba66d
--- /dev/null
+++ b/chrome/common/extensions/api/users_private.idl
@@ -0,0 +1,32 @@
+// Copyright 2015 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.
+
+// Use the <code>chrome.usersPrivate</code> API to manage users.
+namespace usersPrivate {
+
+ callback UsersCallback = void (DOMString[] emails);
+ callback UserAddedCallback = void (boolean success);
+ callback IsOwnerCallback = void (boolean isOwner);
+ callback ManagedCallback = void (boolean managed);
+
+ interface Functions {
+ // Gets a list of the canonicalized emails of the currently whitelisted
+ // users.
+ static void getWhitelistedUsers(UsersCallback callback);
+
+ // Adds a new user with the given email to the whitelist.
+ // The callback is called with true if the user was added succesfully, or
+ // with false if not (e.g. because the user was already present).
+ static void addWhitelistedUser(DOMString email, UserAddedCallback callback);
+
+ // Removes the user with the given email from the whitelist.
+ static void removeWhitelistedUser(DOMString email);
+
+ // Whether the current user is the owner of the device.
+ static void isCurrentUserOwner(IsOwnerCallback callback);
+
+ // Whether the whitelist is managed by enterprise.
+ static void isWhitelistManaged(ManagedCallback callback);
+ };
+};

Powered by Google App Engine
This is Rietveld 408576698