Check-in [a655f43d3b]
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     12    * Handle for the CACKey NaCl Target
    13     13    */
    14     14   var cackeyHandle = null;
    15     15   
    16     16   /*
    17     17    * Handle and ID for outstanding callbacks
    18     18    */
    19         -var cackeyOutstandingCallbacks = []
           19  +var cackeyOutstandingCallbacks = {}
    20     20   var cackeyOutstandingCallbackCounter = -1;
    21     21   
    22     22   /*
    23     23    * Communication with the PIN entry window
    24     24    */
    25     25   var pinWindowPINValue = "";
    26     26   var pinWindowPreviousHandle = null;