Bug 1259846 - QI Services.appinfo to nsICrashReporter because it might not have been QIed yet. r=Mossop

MozReview-Commit-ID: KqyzDnLVENW
This commit is contained in:
Felipe Gomes 2016-03-29 15:20:19 -03:00
Родитель e713c87b39
Коммит 021af209d2
1 изменённых файлов: 1 добавлений и 1 удалений

2
browser/extensions/e10srollout/bootstrap.js поставляемый
Просмотреть файл

@ -95,7 +95,7 @@ function getUserSample() {
function setCohort(cohortName) {
Preferences.set(PREF_COHORT_NAME, cohortName);
try {
Services.appinfo.annotateCrashReport("E10SCohort", cohortName);
Services.appinfo.QueryInterface(Ci.nsICrashReporter).annotateCrashReport("E10SCohort", cohortName);
} catch (e) {}
}