After the previous patch, all that is needed to pass eslint is some whitespace fixes I generated using: ./mach eslint --fix ipc The .eslintrc.js file makes eslint expect XPCShell global variables. With those two changes, eslint can be enabled for the ipc/ directory. MozReview-Commit-ID: BqSICp2iV6O
9 lines
242 B
JavaScript
9 lines
242 B
JavaScript
var Cc = Components.classes;
|
|
var Ci = Components.interfaces;
|
|
|
|
const runtime = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULRuntime);
|
|
|
|
function run_test() {
|
|
do_check_eq(runtime.processType, Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT);
|
|
}
|