зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1153900 - fix use of 'File' constructor in IEProfileMigrator.js, r=mak
This commit is contained in:
Родитель
b3f5482f33
Коммит
c63c828d6c
|
@ -23,6 +23,8 @@ XPCOMUtils.defineLazyModuleGetter(this, "ctypes",
|
|||
XPCOMUtils.defineLazyModuleGetter(this, "WindowsRegistry",
|
||||
"resource://gre/modules/WindowsRegistry.jsm");
|
||||
|
||||
Cu.importGlobalProperties(["File"]);
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//// Helpers.
|
||||
|
||||
|
@ -410,7 +412,7 @@ Cookies.prototype = {
|
|||
aCallback(success);
|
||||
}
|
||||
}).bind(this), false);
|
||||
fileReader.readAsText(File(aFile));
|
||||
fileReader.readAsText(new File(aFile));
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Загрузка…
Ссылка в новой задаче