Bug 1065185 - Do a better job of accessing privileged constants from voicemail marionette tests. r=bz

This commit is contained in:
Bobby Holley 2014-10-03 10:05:51 +02:00
Родитель a9a745e197
Коммит f6ef6e9640
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -5,8 +5,8 @@
const {Cc: Cc, Ci: Ci, Cr: Cr, Cu: Cu} = SpecialPowers;
let RIL = {};
Cu.import("resource://gre/modules/ril_consts.js", RIL);
let RIL = SpecialPowers.wrap(SpecialPowers.createBlankObject());
SpecialPowers.Cu.import("resource://gre/modules/ril_consts.js", RIL);
// Emulate Promise.jsm semantics.
Promise.defer = function() { return new Deferred(); }