2019-02-22 02:04:13 +03:00
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var EXPORTED_SYMBOLS = ["ParentProcessDomains"];
|
|
|
|
|
|
|
|
const { XPCOMUtils } = ChromeUtils.import(
|
|
|
|
"resource://gre/modules/XPCOMUtils.jsm"
|
|
|
|
);
|
|
|
|
|
|
|
|
const ParentProcessDomains = {};
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyModuleGetters(ParentProcessDomains, {
|
|
|
|
Browser: "chrome://remote/content/domains/parent/Browser.jsm",
|
2019-11-18 13:07:38 +03:00
|
|
|
Emulation: "chrome://remote/content/domains/parent/Emulation.jsm",
|
2019-06-27 17:47:18 +03:00
|
|
|
Input: "chrome://remote/content/domains/parent/Input.jsm",
|
2019-06-28 11:16:46 +03:00
|
|
|
Network: "chrome://remote/content/domains/parent/Network.jsm",
|
2019-05-27 11:52:03 +03:00
|
|
|
Page: "chrome://remote/content/domains/parent/Page.jsm",
|
2019-11-02 21:08:56 +03:00
|
|
|
Security: "chrome://remote/content/domains/parent/Security.jsm",
|
2019-03-10 15:51:11 +03:00
|
|
|
Target: "chrome://remote/content/domains/parent/Target.jsm",
|
2019-02-22 02:04:13 +03:00
|
|
|
});
|