зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1418808 - Call QueryInterface when instantiating a JSON Viewer XPCOM class. r=Honza
MozReview-Commit-ID: 9kyPAjv7MCV --HG-- extra : rebase_source : 7c41e153b72fa2925c615e30bf6b6f6692368c10
This commit is contained in:
Родитель
bb968e4fcd
Коммит
3b6b25c474
|
@ -107,7 +107,7 @@ const JsonSnifferFactory = {
|
|||
if (outer) {
|
||||
throw Cr.NS_ERROR_NO_AGGREGATION;
|
||||
}
|
||||
return new JsonViewSniffer();
|
||||
return new JsonViewSniffer().QueryInterface(iid);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -121,7 +121,7 @@ const JsonViewFactory = {
|
|||
if (outer) {
|
||||
throw Cr.NS_ERROR_NO_AGGREGATION;
|
||||
}
|
||||
return JsonViewService.createInstance();
|
||||
return JsonViewService.createInstance().QueryInterface(iid);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче