Bug 1019662 - Report errors when we can't send frameworker:connect. r=flo

This commit is contained in:
David Rajchenbach-Teller 2014-06-04 03:23:00 -04:00
Родитель e9d35dcc24
Коммит fad6d25820
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -57,6 +57,8 @@ this.getFrameWorkerHandle =
existingWorker.browserPromise.then(browser => {
browser.messageManager.sendAsyncMessage("frameworker:connect",
{ portId: portid });
}).then(null, (ex) => {
Cu.reportError("Could not send frameworker:connect: " + ex);
});
// return the pseudo worker object.
let port = new ParentPort(portid, existingWorker.browserPromise, clientWindow);