Bug 1381023: Follow-up: Fix xpcshell failure.

MozReview-Commit-ID: BB8ItETtRMb

--HG--
extra : rebase_source : 81885a8417d83dcae6b0a3896483f0a60e56cb8b
This commit is contained in:
Kris Maglione 2017-07-14 10:50:54 -07:00
Родитель 4d50b6bd73
Коммит 8cbd7a12c9
1 изменённых файлов: 5 добавлений и 3 удалений

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

@ -245,11 +245,13 @@ ProxyMessenger = {
result = res;
}
} catch (e) {
if (e.result !== MessageChannel.RESULT_NO_HANDLER &&
e.result !== MessageChannel.RESULT_NO_RESPONSE) {
if (e.result === MessageChannel.RESULT_NO_RESPONSE) {
// Ignore.
} else if (e.result === MessageChannel.RESULT_NO_HANDLER) {
failures++;
} else {
throw e;
}
failures++;
}
};