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

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

Issue 430563002: Enable system token in platformKeys api. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. 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/common/extensions/api/enterprise_platform_keys.idl
diff --git a/chrome/common/extensions/api/enterprise_platform_keys.idl b/chrome/common/extensions/api/enterprise_platform_keys.idl
index 2ffeb2e0f5dd4b63d2d9c83dee9170e67111bdc3..1fbc0460ea83dc0d92dee7ce68e7c040bc3f3f1d 100644
--- a/chrome/common/extensions/api/enterprise_platform_keys.idl
+++ b/chrome/common/extensions/api/enterprise_platform_keys.idl
@@ -10,8 +10,8 @@
namespace enterprise.platformKeys {
[nocompile, noinline_doc] dictionary Token {
// Uniquely identifies this <code>Token</code>.
- // <p>Static IDs are <code>"user"</code> and <code>"device"</code>,
- // referring to the platform's user-specific and the device-wide hardware
+ // <p>Static IDs are <code>"user"</code> and <code>"system"</code>,
+ // referring to the platform's user-specific and the system-wide hardware
// token, respectively. Any other tokens (with other identifiers) might be
// returned by $(ref:enterprise.platformKeys.getTokens).</p>
DOMString id;
@@ -47,9 +47,9 @@ namespace enterprise.platformKeys {
interface Functions {
// Returns the available Tokens. In a regular user's session the list will
// always contain the user's token with <code>id</code> <code>"user"</code>.
- // If a device-wide TPM token is available it will also contain the
- // device-wide token with <code>id</code> <code>"device"</code>. The
- // device-wide token will be the same for all sessions on this device
+ // If a system-wide TPM token is available, the returned list will also
+ // contain the system-wide token with <code>id</code> <code>"system"</code>.
+ // The system-wide token will be the same for all sessions on this device
// (device in the sense of e.g. a Chromebook).
[nocompile] static void getTokens(GetTokensCallback callback);

Powered by Google App Engine
This is Rietveld 408576698