| 
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202 | 
 *
 * If an error occured, invoke the callback with no arguments.
 */
function cackeyMessageIncoming(messageEvent) {
	var nextFunction = null;
	var chromeCallback = null;
if (messageEvent.data.target != "cackey") {
		return;
	}
	if (GoogleSmartCard.IS_DEBUG_BUILD) {
		console.log("START MESSAGE");
		console.log(messageEvent.data);		console.log("START MESSAGE");		console.log(messageEvent.data);		console.log("END MESSAGE"); | 
<
<
<
 | 
186
187
188
189
190
191
192
193
194
195
196
197
198
199
 | 
 *
 * If an error occured, invoke the callback with no arguments.
 */
function cackeyMessageIncoming(messageEvent) {
	var nextFunction = null;
	var chromeCallback = null;
	if (messageEvent.data.target != "cackey") {
		return;
	}
	if (GoogleSmartCard.IS_DEBUG_BUILD) {
		console.log("START MESSAGE");
		console.log(messageEvent.data);
 |