gecko-dev/toolkit/modules/LoadContextInfo.jsm
Mark Banner e4262540c6 Bug 1417944 - Enable ESLint rule mozilla/use-services for toolkit/. r=mossop
MozReview-Commit-ID: JhHXYma5Adp

--HG--
extra : rebase_source : 79d9876a82b39070d5d3cd1e9464e23d113c88a8
2017-11-22 13:36:34 +00:00

18 lines
889 B
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/. */
/**
* This jsm is here only for compatibility. Extension developers may use it
* to build nsILoadContextInfo to pass down to HTTP cache APIs. Originally
* it was possible to implement nsILoadContextInfo in JS. But now it turned
* out to be a built-in class only, so we need a component (service) as
* a factory to build nsILoadContextInfo in a JS code.
*/
this.EXPORTED_SYMBOLS = ["LoadContextInfo"];
// XXX Bug 1417937 will remove this file.
// eslint-disable-next-line mozilla/use-services
this.LoadContextInfo = Components.classes["@mozilla.org/load-context-info-factory;1"]
.getService(Components.interfaces.nsILoadContextInfoFactory);