Skip to content

Commit

Permalink
Bug 1594097 - Fix profiler symbolication of local builds on Windows b…
Browse files Browse the repository at this point in the history
…y picking up PR #7 from the profiler-get-symbols repo. r=canaltinova

Differential Revision: https://phabricator.services.mozilla.com/D52421

--HG--
extra : moz-landing-system : lando
  • Loading branch information
mstange committed Nov 12, 2019
1 parent 948a64f commit f63b77c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions toolkit/components/extensions/ProfilerGetSymbols.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ const global = this;
// expect them to be.
// The source code is at https://github.com/mstange/profiler-get-symbols/ .

// Generated from https://github.com/mstange/profiler-get-symbols/commit/aee29d787991cedd50bd3481df16b47190b4f9e7
// Generated from https://github.com/mstange/profiler-get-symbols/commit/90ee39f1d18d2727f07dc57bd93cff6bc73ce8a0
const WASM_MODULE_URL =
"https://zealous-rosalind-a98ce8.netlify.com/wasm/55115f2a5d24981933dba6de2026f972769ed3830cd55b2d6a26a440673eb1374cd42e6c732a0423aa748a7bea7edb69.wasm";
"https://zealous-rosalind-a98ce8.netlify.com/wasm/8f7ca2f70e1cd21b5a2dbe96545672752887bfbd4e7b3b9437e9fc7c3da0a3bedae4584ff734f0c9f08c642e6b66ffab.wasm";
const WASM_MODULE_INTEGRITY =
"sha384-VRFfKl0kmBkz26beICb5cnae04MM1VstaiakQGc+sTdM1C5scyoEI6p0invqfttp";
"sha384-j3yi9w4c0htaLb6WVFZydSiHv71OezuUN+n8fD2go77a5FhP9zTwyfCMZC5rZv+r";

const EXPIRY_TIME_IN_MS = 5 * 60 * 1000; // 5 minutes

Expand Down
10 changes: 5 additions & 5 deletions toolkit/components/extensions/profiler_get_symbols.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// THIS FILE IS AUTOGENERATED by wasm-bindgen.
//
// Generated from:
// https://github.com/mstange/profiler-get-symbols/commit/aee29d787991cedd50bd3481df16b47190b4f9e7
// https://github.com/mstange/profiler-get-symbols/commit/90ee39f1d18d2727f07dc57bd93cff6bc73ce8a0
// by following the instructions in that repository's Readme.md
//

Expand Down Expand Up @@ -362,18 +362,18 @@ function init(module) {
const ret = wasm.memory;
return addHeapObject(ret);
};
imports.wbg.__wbg_buffer_e04d67bf3bf41917 = function(arg0) {
imports.wbg.__wbg_buffer_aa8ebea80955a01a = function(arg0) {
const ret = getObject(arg0).buffer;
return addHeapObject(ret);
};
imports.wbg.__wbg_newwithbyteoffsetandlength_9cfc37146f8a28ba = function(arg0, arg1, arg2) {
imports.wbg.__wbg_newwithbyteoffsetandlength_3e607c21646a8aef = function(arg0, arg1, arg2) {
const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
return addHeapObject(ret);
};
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
imports.wbg.__wbg_call_3d24f4e03e010931 = function(arg0, arg1, arg2) {
imports.wbg.__wbg_call_9c879b23724d007e = function(arg0, arg1, arg2) {
try {
const ret = getObject(arg0).call(getObject(arg1), getObject(arg2));
return addHeapObject(ret);
Expand Down Expand Up @@ -423,4 +423,4 @@ function init(module) {

self.wasm_bindgen = Object.assign(init, __exports);

})();
})();

0 comments on commit f63b77c

Please sign in to comment.