Bug 1320084 - Remove useless devtools JSM shims. r=jryans

MozReview-Commit-ID: JUui79wiNYi
This commit is contained in:
Alexandre Poirot 2017-01-04 09:11:25 -08:00
Родитель 693c71b018
Коммит 32a78e7d88
4 изменённых файлов: 1 добавлений и 47 удалений

Просмотреть файл

@ -11,8 +11,3 @@
EXTRA_JS_MODULES.devtools += [
'gDevTools.jsm',
]
# Extra compatibility layer for transitional URLs used for part of 44 cycle
EXTRA_JS_MODULES.devtools.client.framework += [
'gDevTools.jsm',
]

Просмотреть файл

@ -5,6 +5,5 @@
DevToolsModules(
'app-actor-front.js',
'Devices.jsm',
'Simulator.jsm'
'Devices.jsm'
)

Просмотреть файл

@ -1,34 +0,0 @@
/* 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";
/**
* This file only exists to support add-ons which import this module at a
* specific path.
*/
const Cu = Components.utils;
const { Services } = Cu.import("resource://gre/modules/Services.jsm", {});
const WARNING_PREF = "devtools.migration.warnings";
if (Services.prefs.getBoolPref(WARNING_PREF)) {
const { Deprecated } = Cu.import("resource://gre/modules/Deprecated.jsm", {});
Deprecated.warning("This path to Simulator.jsm is deprecated. Please use " +
"Cu.import(\"resource://devtools/shared/" +
"apps/Simulator.jsm\") to load this module.",
"https://bugzil.la/912121");
}
this.EXPORTED_SYMBOLS = [
"Simulator",
];
const module =
Cu.import("resource://devtools/shared/apps/Simulator.jsm", {});
for (let symbol of this.EXPORTED_SYMBOLS) {
this[symbol] = module[symbol];
}

Просмотреть файл

@ -17,15 +17,9 @@ EXTRA_JS_MODULES.devtools += [
'dbg-client.jsm',
'event-emitter.js',
'Loader.jsm',
'Simulator.jsm',
]
# Extra compatibility layer for transitional URLs used for part of 44 cycle
EXTRA_JS_MODULES.devtools.shared += [
'Console.jsm',
'Loader.jsm',
]
EXTRA_JS_MODULES.devtools.shared.apps += [
'Simulator.jsm',
]