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

Side by Side Diff: chrome/common/extensions/api/enterprise_platform_keys_internal.idl

Issue 1822303002: [Extensions] Convert APIs to use movable types [4] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Istiaque's Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Internal API for platform keys and certificate management. 5 // Internal API for platform keys and certificate management.
6 [ platforms = ("chromeos"), 6 [ platforms = ("chromeos"),
7 implemented_in = "chrome/browser/extensions/api/enterprise_platform_keys/enter prise_platform_keys_api.h" ] 7 implemented_in = "chrome/browser/extensions/api/enterprise_platform_keys/enter prise_platform_keys_api.h",
8 use_movable_types=true ]
8 namespace enterprise.platformKeysInternal { 9 namespace enterprise.platformKeysInternal {
9 // Invoked by <code>getTokens</code>. 10 // Invoked by <code>getTokens</code>.
10 // |tokenIds| The list of IDs of the avialable Tokens. 11 // |tokenIds| The list of IDs of the avialable Tokens.
11 callback GetTokensCallback = void(DOMString[] tokenIds); 12 callback GetTokensCallback = void(DOMString[] tokenIds);
12 13
13 // Invoked by <code>generateKey</code>. 14 // Invoked by <code>generateKey</code>.
14 // |publicKey| The Subject Public Key Info (see X.509) of the generated key 15 // |publicKey| The Subject Public Key Info (see X.509) of the generated key
15 // in DER encoding. 16 // in DER encoding.
16 callback GenerateKeyCallback = void(ArrayBuffer publicKey); 17 callback GenerateKeyCallback = void(ArrayBuffer publicKey);
17 18
(...skipping 10 matching lines...) Expand all
28 // RSASSA-PKCS1-v1_5. 29 // RSASSA-PKCS1-v1_5.
29 // |tokenId| The id of a Token returned by |getTokens|. 30 // |tokenId| The id of a Token returned by |getTokens|.
30 // |modulusLength| The length, in bits, of the RSA modulus. 31 // |modulusLength| The length, in bits, of the RSA modulus.
31 // |callback| Called back with the Subject Public Key Info of the generated 32 // |callback| Called back with the Subject Public Key Info of the generated
32 // key. 33 // key.
33 static void generateKey(DOMString tokenId, 34 static void generateKey(DOMString tokenId,
34 long modulusLength, 35 long modulusLength,
35 GenerateKeyCallback callback); 36 GenerateKeyCallback callback);
36 }; 37 };
37 }; 38 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698