Differences From Artifact [dece8c3884]:
- File build/chrome/cackey.js — part of check-in [a90efdf98f] at 2016-02-15 06:16:22 on branch trunk — ChromeOS: Start trying to sign data or send it back as needing a PIN or unsignable (user: rkeene, size: 8346) [annotate] [blame] [check-ins using]
To Artifact [f054a4b4b3]:
- File build/chrome/cackey.js — part of check-in [ae9cfddbd2] at 2016-02-15 06:17:41 on branch trunk — ChromeOS: Add new PIN to requests to sign once we gathered a new PIN (user: rkeene, size: 8416) [annotate] [blame] [check-ins using]
| ︙ | |||
175 176 177 178 179 180 181 182 183 184 185 186 187 188 | 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | + + |
console.log("[cackey] The PIN dialog was closed without gathering a PIN, treating it as a failure.");
tmpMessageEvent.data.status = "error";
tmpMessageEvent.data.error = "PIN window closed without a PIN being provided";
cackeyMessageIncoming(tmpMessageEvent);
} else {
tmpMessageEvent.data.originalrequest.pin = pinWindowPINValue;
cackeyHandle.postMessage(tmpMessageEvent.data.originalrequest);
}
delete cackeyMessagesToRetry[messageIdx];
}
return;
|
| ︙ |