Files
tubestation/toolkit/components/extensions/parent/.eslintrc.js
Andrew Swan 30b252e25d Bug 1465537 Move browser startup promises to ExtensionParent.jsm r=zombie
Creating these promises from ext-toolkit.js was always dicey since that
script is loaded asynchronously during startup.  This should ensure that
the startup promises are reliably created early enough in startup.

MozReview-Commit-ID: A0V7iCOFNI8
2018-06-04 10:51:56 -07:00

26 lines
650 B
JavaScript

"use strict";
module.exports = {
"globals": {
"CONTAINER_STORE": true,
"DEFAULT_STORE": true,
"EventEmitter": true,
"EventManager": true,
"InputEventManager": true,
"PRIVATE_STORE": true,
"TabBase": true,
"TabManagerBase": true,
"TabTrackerBase": true,
"WindowBase": true,
"WindowManagerBase": true,
"WindowTrackerBase": true,
"getContainerForCookieStoreId": true,
"getCookieStoreIdForContainer": true,
"getCookieStoreIdForTab": true,
"isContainerCookieStoreId": true,
"isDefaultCookieStoreId": true,
"isPrivateCookieStoreId": true,
"isValidCookieStoreId": true,
},
};