Bug 1363877 - Label PredictorLearnRunnable with SystemGroup (r=hurley)

MozReview-Commit-ID: XPGp0226kb
This commit is contained in:
Bill McCloskey 2017-05-10 12:32:01 -07:00
Родитель fddeb6a448
Коммит 44b0534627
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1550,7 +1550,9 @@ Predictor::LearnNative(nsIURI *targetURI, nsIURI *sourceURI,
RefPtr<PredictorLearnRunnable> runnable = new PredictorLearnRunnable(
targetURI, sourceURI, reason, originAttributes);
NS_DispatchToMainThread(runnable);
SystemGroup::Dispatch("PredictorLearnRunnable",
TaskCategory::Other,
runnable.forget());
return NS_OK;
}