Bug 1675614 - Process spellcheck in chunks in the parent process, since it's also async. r=m_kato

Differential Revision: https://phabricator.services.mozilla.com/D109692
This commit is contained in:
Matt Woodrow 2021-03-26 04:19:46 +00:00
Родитель 4d7b8ad1e7
Коммит 00a2d5f7d4
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -1315,9 +1315,8 @@ nsresult mozInlineSpellChecker::DoSpellCheck(
nsAutoString wordText;
NodeOffsetRange wordNodeOffsetRange;
bool dontCheckWord;
// XXX Spellchecker API isn't async on chrome process.
static const size_t requestChunkSize =
XRE_IsContentProcess() ? INLINESPELL_MAXIMUM_CHUNKED_WORDS_PER_TASK : 1;
INLINESPELL_MAXIMUM_CHUNKED_WORDS_PER_TASK;
while (
aWordUtil.GetNextWord(wordText, &wordNodeOffsetRange, &dontCheckWord)) {
// get the range for the current word.