Skip to content

Commit

Permalink
Merge pull request #90 from rainemak/memoryDumpFix
Browse files Browse the repository at this point in the history
Fix memory dumping to work with Gecko 38
  • Loading branch information
rojkov committed Oct 23, 2015
2 parents 2dd22eb + 66b6f90 commit 741b87f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsscripts/embedhelper.js
Expand Up @@ -347,7 +347,7 @@ EmbedHelper.prototype = {
case "Memory:Dump": {
if (aMessage.data && aMessage.data.fileName) {
let memDumper = Cc["@mozilla.org/memory-info-dumper;1"].getService(Ci.nsIMemoryInfoDumper);
memDumper.dumpMemoryReportsToNamedFile(aMessage.data.fileName, null, null);
memDumper.dumpMemoryReportsToNamedFile(aMessage.data.fileName, null, null, false);
}
break;
}
Expand Down

0 comments on commit 741b87f

Please sign in to comment.