fune/toolkit/components/osfile/osfile.jsm
Dan Banner 3d2bc226ab Bug 1399197 - Enable ESLint for osfile.jsm, nsURLFormatter.js and nsHelperAppDlg.js r=standard8
MozReview-Commit-ID: JpW8i9QKxVL

--HG--
extra : rebase_source : f8e148f4719cbdd5fc4e464a68a0d9efb21d2eb8
2018-01-10 19:47:43 +00:00

36 lines
1.3 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* Common front for various implementations of OS.File
*/
if (typeof Components != "undefined") {
this.EXPORTED_SYMBOLS = ["OS"];
ChromeUtils.import("resource://gre/modules/osfile/osfile_async_front.jsm", this);
} else {
/* eslint-env worker */
importScripts("resource://gre/modules/workers/require.js");
var SharedAll = require("resource://gre/modules/osfile/osfile_shared_allthreads.jsm");
// At this stage, we need to import all sources at once to avoid
// a unique failure on tbpl + talos that seems caused by a
// what looks like a nested event loop bug (see bug 794091).
if (SharedAll.Constants.Win) {
importScripts(
"resource://gre/modules/osfile/osfile_win_back.jsm",
"resource://gre/modules/osfile/osfile_shared_front.jsm",
"resource://gre/modules/osfile/osfile_win_front.jsm"
);
} else {
importScripts(
"resource://gre/modules/osfile/osfile_unix_back.jsm",
"resource://gre/modules/osfile/osfile_shared_front.jsm",
"resource://gre/modules/osfile/osfile_unix_front.jsm"
);
}
OS.Path = require("resource://gre/modules/osfile/ospath.jsm");
}