Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 addOnPreMain(function() {
7 onmessage = function(aMsg){
9 // Convert the string to an array of UTF8 bytes.
10 var encoder = new TextEncoder();
11 encoder['encoding'] = "utf-8";
12 var utf8Array = encoder['encode'](aMsg.data);
14 // Copy the UTF8 byte array to the heap.
15 var strLength = utf8Array.length;
16 var ptr = Module['_malloc'](strLength + 1);
17 var heap = Module['HEAPU8'];
18 new Uint8Array(heap.buffer, ptr, strLength).set(utf8Array);
19 // Add a \0 at the end of the C string.
20 heap[ptr + strLength] = 0;
22 var lang = Pointer_stringify(_detectLangCode(ptr));
23 var confident = !!Module['ccall']("lastResultReliable", "number");
24 postMessage({'language': lang,
25 'confident': confident});
27 Module['_free'](ptr);
28 };
30 postMessage("ready");
32 });