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

Side by Side Diff: chrome/browser/resources/chromeos/cryptohome.html

Issue 10703162: chromeos: Remove CryptohomeLibrary::TpmGetPassword and TpmIsReady (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More localized variables Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <title>About Cryptohome</title>
5 <meta charset="utf-8">
6 <script src="chrome://resources/js/util.js"></script>
7 <script src="chrome://cryptohome/cryptohome.js"></script>
8 </head>
9 <body>
10 <div id="refresh-message">
11 (To auto-refresh this page: about:cryptohome/&lt;secs&gt;)
12 </div>
13 <h3>CryptohomeLibrary:</h3>
14 <table>
15 <tr>
16 <td>IsMounted</td>
17 <td id="is-mounted"></td>
18 </tr>
19 <tr>
20 <td>TpmIsReady</td>
21 <td id="tpm-is-ready"></td>
22 </tr>
23 <tr>
24 <td>TpmIsEnabled</td>
25 <td id="tpm-is-enabled"></td>
26 </tr>
27 <tr>
28 <td>TpmIsOwned</td>
29 <td id="tpm-is-owned"></td>
30 </tr>
31 <tr>
32 <td>TpmIsBeingOwned</td>
33 <td id="tpm-is-being-owned"></td>
34 </tr>
35 <tr>
36 <td>Pkcs11IsTpmTokenReady</td>
37 <td id="pkcs11-is-tpm-token-ready"></td>
38 </tr>
39 </table>
40 <h3>crypto:</h3>
41 <table>
42 <tr>
43 <td>IsTPMTokenReady</td>
44 <td id="is-tpm-token-ready"></td>
45 </tr>
46 <tr>
47 <td>token_name</td>
48 <td id="token-name"></td>
49 </tr>
50 <tr>
51 <td>user_pin</td>
52 <td id="user-pin"></td>
53 </tr>
54 </table>
55 </body>
56 </html>
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/tpm_password_fetcher.cc ('k') | chrome/browser/resources/chromeos/cryptohome.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698