Bug 1698786: part 3) Add some logging to `mozSpellChecker`. r=masayuki

Differential Revision: https://phabricator.services.mozilla.com/D108623
This commit is contained in:
Mirko Brodesser 2021-03-18 09:33:21 +00:00
Родитель 0840574ecb
Коммит 0169591f05
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -10,12 +10,14 @@
#include "nsISimpleEnumerator.h"
#include "mozEnglishWordUtils.h"
#include "mozilla/dom/ContentChild.h"
#include "mozilla/Logging.h"
#include "mozilla/PRemoteSpellcheckEngineChild.h"
#include "mozilla/TextServicesDocument.h"
#include "nsXULAppAPI.h"
#include "RemoteSpellCheckEngineChild.h"
using mozilla::GenericPromise;
using mozilla::LogLevel;
using mozilla::PRemoteSpellcheckEngineChild;
using mozilla::RemoteSpellcheckEngineChild;
using mozilla::TextServicesDocument;
@ -23,6 +25,8 @@ using mozilla::dom::ContentChild;
#define DEFAULT_SPELL_CHECKER "@mozilla.org/spellchecker/engine;1"
static mozilla::LazyLogModule sSpellChecker("SpellChecker");
NS_IMPL_CYCLE_COLLECTION(mozSpellChecker, mTextServicesDocument,
mPersonalDictionary)
@ -68,6 +72,8 @@ TextServicesDocument* mozSpellChecker::GetTextServicesDocument() {
nsresult mozSpellChecker::SetDocument(
TextServicesDocument* aTextServicesDocument, bool aFromStartofDoc) {
MOZ_LOG(sSpellChecker, LogLevel::Debug, ("%s", __FUNCTION__));
mTextServicesDocument = aTextServicesDocument;
mFromStart = aFromStartofDoc;
return NS_OK;