Overview
Comment: | ChromeOS: Converted callback storage from an array to a hash, since we don't care about ordering |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | a655f43d3bd97ed438d5c33a40399ee720e83c2f |
User & Date: | rkeene on 2016-02-15 05:16:01 |
Other Links: | manifest | tags |
Context
2016-02-15
| ||
06:16 | ChromeOS: Start trying to sign data or send it back as needing a PIN or unsignable check-in: a90efdf98f user: rkeene tags: trunk | |
05:16 | ChromeOS: Converted callback storage from an array to a hash, since we don't care about ordering check-in: a655f43d3b user: rkeene tags: trunk | |
2016-02-13
| ||
15:43 | ChromeOS: More work towards making the PIN entry more useful check-in: 16fd3e5408 user: rkeene tags: trunk | |
Changes
Modified build/chrome/cackey.js from [7034902175] to [25cd0bb896].
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
* Handle for the CACKey NaCl Target
*/
var cackeyHandle = null;
/*
* Handle and ID for outstanding callbacks
*/
var cackeyOutstandingCallbacks = []
var cackeyOutstandingCallbackCounter = -1;
/*
* Communication with the PIN entry window
*/
var pinWindowPINValue = "";
var pinWindowPreviousHandle = null;
|
| |
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
* Handle for the CACKey NaCl Target
*/
var cackeyHandle = null;
/*
* Handle and ID for outstanding callbacks
*/
var cackeyOutstandingCallbacks = {}
var cackeyOutstandingCallbackCounter = -1;
/*
* Communication with the PIN entry window
*/
var pinWindowPINValue = "";
var pinWindowPreviousHandle = null;
|