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
26 lines
650 B
JavaScript
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,
|
|
},
|
|
};
|